From c0f94d44f3a5fe701d2373a0a04b850e3725b784 Mon Sep 17 00:00:00 2001 From: Cy Schubert Date: Wed, 16 Jan 2002 03:17:24 +0000 Subject: Update 1.2.2 -> 1.2.3 --- security/krb5-appl/files/patch-bd | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 security/krb5-appl/files/patch-bd (limited to 'security/krb5-appl/files/patch-bd') diff --git a/security/krb5-appl/files/patch-bd b/security/krb5-appl/files/patch-bd deleted file mode 100644 index b2bf41284bb7..000000000000 --- a/security/krb5-appl/files/patch-bd +++ /dev/null @@ -1,19 +0,0 @@ ---- appl/gssftp/ftpd/ftpcmd.y.ORIG Wed Feb 28 16:06:45 2001 -+++ appl/gssftp/ftpd/ftpcmd.y Fri Apr 27 10:18:01 2001 -@@ -805,11 +805,13 @@ - * This is a valid reply in some cases but not in others. - */ - if (logged_in && $1 && strncmp((char *) $1, "~", 1) == 0) { -- *(char **)&($$) = *ftpglob((char *) $1); -- if (globerr != NULL) { -+ char **vv; -+ vv = ftpglob((char *) $1); -+ if (vv == NULL || globerr != NULL) { - reply(550, globerr); - $$ = NULL; -- } -+ } else -+ $$ = *vv; - free((char *) $1); - } else - $$ = $1; -- cgit v1.2.3