| 1234567891011121314151617181920212223242526 |
- Index: doc/Makefile.in
- --- doc/Makefile.in.orig 2003-10-22 18:30:05.000000000 +0200
- +++ doc/Makefile.in 2003-11-09 12:34:30.000000000 +0100
- @@ -142,7 +142,7 @@
- target_cpu = @target_cpu@
- target_os = @target_os@
- target_vendor = @target_vendor@
- -man_MANS = cfengine.8 cfagent.8 cfenvd.8 cfenvgraph.8 cfexecd.8 cfkey.8 cfrun.8 cfservd.8
- +man_MANS = cfengine.8
-
- info_TEXINFOS = cfengine-Reference.texinfo cfengine-Tutorial.texinfo cfengine-Anomalies.texinfo
-
- Index: src/filedir.c
- --- src/filedir.c.orig 2004-01-11 14:13:29.000000000 +0100
- +++ src/filedir.c 2004-01-13 08:41:57.000000000 +0100
- @@ -554,7 +554,7 @@
- return;
- }
- #else
- -if (((newperm & 07777) == (dstat->st_mode & 07777) && (action != touch)) /* file okay */
- +if (((newperm & 07777) == (dstat->st_mode & 07777)) && (action != touch)) /* file okay */
- {
- Debug("File okay, newperm = %o, stat = %o\n",(newperm & 07777),(dstat->st_mode & 07777));
- fixmode = false;
|