Index: CHANGES =================================================================== RCS file: /cvsroot/wu-ftpd/CHANGES,v retrieving revision 1.46 diff -u -r1.46 CHANGES --- CHANGES 2000/07/11 15:03:02 1.46 +++ CHANGES 2000/08/29 17:26:22 @@ -25,6 +25,8 @@ Changes in 2.6.2: Released + o Somehow the fix for pasv-allow didn't actually make it into 2.6.1 + o Off-by-one and missing step-increment in a couple routines for throughput limiting. Index: src/ftpd.c =================================================================== RCS file: /cvsroot/wu-ftpd/src/ftpd.c,v retrieving revision 1.113 diff -u -r1.113 ftpd.c --- src/ftpd.c 2000/07/07 22:17:38 1.113 +++ src/ftpd.c 2000/08/29 17:26:23 @@ -7274,7 +7274,7 @@ int which; struct aclmember *entry = NULL; (void) acl_getclass(class); - while (getaclentry("port-allow", &entry)) { + while (getaclentry("pasv-allow", &entry)) { if ((ARG0 != NULL) && (strcasecmp(class, ARG0) == 0)) for (which = 1; (which < MAXARGS) && (ARG[which] != NULL); which++) { if (hostmatch(ARG[which], remoteaddr, NULL))