summaryrefslogtreecommitdiff
path: root/sysutils/cfengine2/files/patch-case
diff options
context:
space:
mode:
authorSergei Kolobov <sergei@FreeBSD.org>2004-01-26 22:59:52 +0000
committerSergei Kolobov <sergei@FreeBSD.org>2004-01-26 22:59:52 +0000
commit44f6e99f4e94e9037c9f82717031cd4940c5a330 (patch)
tree92da92261d36f9021a2a2e2ba93ed21cbad0895b /sysutils/cfengine2/files/patch-case
parentBelatedly 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-case')
-rw-r--r--sysutils/cfengine2/files/patch-case33
1 files changed, 0 insertions, 33 deletions
diff --git a/sysutils/cfengine2/files/patch-case b/sysutils/cfengine2/files/patch-case
deleted file mode 100644
index de19688ded02..000000000000
--- a/sysutils/cfengine2/files/patch-case
+++ /dev/null
@@ -1,33 +0,0 @@
---- src/cfagent.c.orig Fri Nov 28 16:14:34 2003
-+++ src/cfagent.c Fri Nov 28 16:15:32 2003
-@@ -615,7 +615,7 @@
- { struct Item *ip;
- int n = 0;
-
--if (strstr(VSYSNAME.nodename,ToLowerStr(VDOMAIN)))
-+if (strcasestr(VSYSNAME.nodename,VDOMAIN))
- {
- strcpy(VFQNAME,VSYSNAME.nodename);
-
---- src/cfservd.c.orig Fri Nov 28 16:14:49 2003
-+++ src/cfservd.c Fri Nov 28 18:25:04 2003
-@@ -423,7 +423,7 @@
-
- i = 0;
-
--if (strstr(VSYSNAME.nodename,ToLowerStr(VDOMAIN)))
-+if (strcasestr(VSYSNAME.nodename,VDOMAIN))
- {
- strncpy(VFQNAME,VSYSNAME.nodename,maxvarsize-1);
-
---- src/install.c.orig Fri Nov 28 16:14:39 2003
-+++ src/install.c Fri Nov 28 16:21:06 2003
-@@ -117,7 +117,7 @@
-
- strcpy(VDOMAIN,value);
-
-- if (!strstr(VSYSNAME.nodename,ToLowerStr(VDOMAIN)))
-+ if (!strcasestr(VSYSNAME.nodename,VDOMAIN))
- {
- snprintf(VFQNAME,bufsize,"%s.%s",VSYSNAME.nodename,ToLowerStr(VDOMAIN));
- strcpy(VUQNAME,VSYSNAME.nodename);