summaryrefslogtreecommitdiff
path: root/security/heimdal/files/patch-aa
diff options
context:
space:
mode:
authorJacques Vidrine <nectar@FreeBSD.org>2001-06-29 15:38:33 +0000
committerJacques Vidrine <nectar@FreeBSD.org>2001-06-29 15:38:33 +0000
commit9c3c2fffc7bf2f4e9a674ce77945f12b6975607e (patch)
treed3ead31136f2e0a21b31fce0b191208e2bb116ab /security/heimdal/files/patch-aa
parentRemove pdflib support. (diff)
Correct no-nos: one file per patch, please. Don't touch more than one
source file with each patch file, and don't touch the same source file with more than one patch file.
Notes
Notes: svn path=/head/; revision=44566
Diffstat (limited to 'security/heimdal/files/patch-aa')
-rw-r--r--security/heimdal/files/patch-aa44
1 files changed, 0 insertions, 44 deletions
diff --git a/security/heimdal/files/patch-aa b/security/heimdal/files/patch-aa
index aa4e885d3bde..fa141e58bbb6 100644
--- a/security/heimdal/files/patch-aa
+++ b/security/heimdal/files/patch-aa
@@ -20,47 +20,3 @@ diff -u -w -r1.3 broken-glob.m4
NULL, NULL);
],:,ac_cv_func_glob_working=no,:))
-Index: appl/ftp/ftpd/ftpd.c
-===================================================================
-RCS file: /afs/pdc.kth.se/src/packages/kth-krb/SourceRepository/appl/ftp/ftpd/ftpd.c,v
-retrieving revision 1.157
-diff -u -w -r1.157 ftpd.c
---- appl/ftp/ftpd/ftpd.c 2001/04/19 14:41:29 1.157
-+++ appl/ftp/ftpd/ftpd.c 2001/06/19 09:07:50
-@@ -2165,7 +2165,13 @@
- char buf[MaxPathLen];
-
- if (strpbrk(whichf, "~{[*?") != NULL) {
-- int flags = GLOB_BRACE|GLOB_NOCHECK|GLOB_QUOTE|GLOB_TILDE|GLOB_LIMIT;
-+ int flags = GLOB_BRACE|GLOB_NOCHECK|GLOB_QUOTE|GLOB_TILDE|
-+#ifdef GLOB_MAXPATH
-+ GLOB_MAXPATH
-+#else
-+ GLOB_LIMIT
-+#endif
-+ ;
-
- memset(&gl, 0, sizeof(gl));
- freeglob = 1;
-Index: appl/ftp/ftpd/popen.c
-===================================================================
-RCS file: /afs/pdc.kth.se/src/packages/kth-krb/SourceRepository/appl/ftp/ftpd/popen.c,v
-retrieving revision 1.24
-diff -u -w -r1.24 popen.c
---- appl/ftp/ftpd/popen.c 2001/03/26 11:41:02 1.24
-+++ appl/ftp/ftpd/popen.c 2001/06/19 09:07:50
-@@ -139,7 +139,13 @@
- for (gargc = argc = 1; argv[argc] && gargc < MAXGLOBS - 1; argc++) {
- glob_t gl;
- int flags = GLOB_BRACE|GLOB_NOCHECK|GLOB_QUOTE|GLOB_TILDE
-- | GLOB_LIMIT;
-+ |
-+#ifdef GLOB_MAXPATH
-+ GLOB_MAXPATH
-+#else
-+ GLOB_LIMIT
-+#endif
-+ ;
-
- memset(&gl, 0, sizeof(gl));
- if (no_glob || glob(argv[argc], flags, NULL, &gl))