*** ../../cfengine-2.0.1/src/image.c Thu Mar 28 08:48:04 2002 --- image.c Tue May 21 09:14:36 2002 *************** *** 536,542 **** snprintf(OUTPUT,bufsize*2,"Purging %s in copy dest directory\n",filename); CfLog(cfsilent,OUTPUT,""); ! if (stat(filename,&statbuf) == -1) { snprintf(OUTPUT,bufsize*2,"Couldn't stat %s while purging\n",filena me); CfLog(cfverbose,OUTPUT,"stat"); --- 536,545 ---- snprintf(OUTPUT,bufsize*2,"Purging %s in copy dest directory\n",filename); CfLog(cfsilent,OUTPUT,""); ! /* ! * HvB: Use lstat instead of stat else the link will be followed!! ! */ ! if (lstat(filename,&statbuf) == -1) { snprintf(OUTPUT,bufsize*2,"Couldn't stat %s while purging\n",filena me); CfLog(cfverbose,OUTPUT,"stat");