diff options
author | Sergei Kolobov <sergei@FreeBSD.org> | 2004-01-26 22:59:52 +0000 |
---|---|---|
committer | Sergei Kolobov <sergei@FreeBSD.org> | 2004-01-26 22:59:52 +0000 |
commit | 44f6e99f4e94e9037c9f82717031cd4940c5a330 (patch) | |
tree | 92da92261d36f9021a2a2e2ba93ed21cbad0895b /sysutils/cfengine2/files/patch-filedir | |
parent | Belatedly document renaming of ports: (diff) |
- Update to 2.1.1
- Patch to fix missing paren in src/filedir.c
- Patch for case insensitive hostname matching removed
(now the default as of this version)
While I'm here:
- Respect hier(7): install examples into ${EXAMPLESDIR},
docs into ${DOCSDIR}
PR: 61602
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=99236
Diffstat (limited to 'sysutils/cfengine2/files/patch-filedir')
-rw-r--r-- | sysutils/cfengine2/files/patch-filedir | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sysutils/cfengine2/files/patch-filedir b/sysutils/cfengine2/files/patch-filedir new file mode 100644 index 000000000000..40e6d82a4a5d --- /dev/null +++ b/sysutils/cfengine2/files/patch-filedir @@ -0,0 +1,11 @@ +--- src/filedir.c.orig Mon Jan 19 19:22:26 2004 ++++ src/filedir.c Mon Jan 19 19:22:39 2004 +@@ -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; |