summaryrefslogtreecommitdiff
path: root/ftp/wu-ftpd+ipv6/files
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2000-07-09 02:07:07 +0000
committerWill Andrews <will@FreeBSD.org>2000-07-09 02:07:07 +0000
commita04ccb23d839f937dc230aa7164a2e1c7ba6acc3 (patch)
treeaacf1081884f68be7f425a8b51337b82be6e3b34 /ftp/wu-ftpd+ipv6/files
parentUpdate to 1.2.0 (diff)
Update to 2.6.1, which fixes some security issues (actually, we already
had some setproctitle(), etc. fixed through patch-aa), fixes memory leaks in internal ls, and merges in the virtual passwd/shadow features of BeroFTPD. This update should solve SA 00:29. Add WWW to DESCR.
Notes
Notes: svn path=/head/; revision=30364
Diffstat (limited to 'ftp/wu-ftpd+ipv6/files')
-rw-r--r--ftp/wu-ftpd+ipv6/files/patch-aa44
1 files changed, 7 insertions, 37 deletions
diff --git a/ftp/wu-ftpd+ipv6/files/patch-aa b/ftp/wu-ftpd+ipv6/files/patch-aa
index 7345d962bb7d..717e10da331a 100644
--- a/ftp/wu-ftpd+ipv6/files/patch-aa
+++ b/ftp/wu-ftpd+ipv6/files/patch-aa
@@ -1,6 +1,6 @@
---- src/ftpd.c.old Sat Jun 24 15:03:05 2000
-+++ src/ftpd.c Sat Jun 24 15:04:01 2000
-@@ -1602,9 +1602,9 @@
+--- src/ftpd.c Sat Jul 1 14:17:39 2000
++++ src/ftpd.c.new Sat Jul 8 21:48:05 2000
+@@ -1662,9 +1662,9 @@
/* Display s/key challenge where appropriate. */
if (pwd == NULL || skeychallenge(&skey, pwd->pw_name, sbuf))
@@ -12,19 +12,7 @@
pwok ? "allowed" : "required", name);
return (buf);
}
-@@ -2008,9 +2008,9 @@
- s = strsep(&cp, "\n");
- if (cp == NULL || *cp == '\0')
- break;
-- lreply(331, s);
-+ lreply(331, "%s", s);
- }
-- reply(331, s);
-+ reply(331, "%s", s);
- }
- else {
- #endif
-@@ -2491,7 +2491,7 @@
+@@ -2572,7 +2572,7 @@
#ifdef BSD_AUTH
if (ext_auth) {
if ((salt = check_auth(the_user, passwd))) {
@@ -33,25 +21,7 @@
#ifdef LOG_FAILED /* 27-Apr-93 EHK/BM */
syslog(LOG_INFO, "failed login from %s",
remoteident);
-@@ -3156,7 +3156,7 @@
- reply(230, "User %s logged in.%s", pw->pw_name, guest ?
- " Access restrictions apply." : "");
- sprintf(proctitle, "%s: %s", remotehost, pw->pw_name);
-- setproctitle(proctitle);
-+ setproctitle("%s", proctitle);
- if (logging)
- syslog(LOG_INFO, "FTP LOGIN FROM %s, %s", remoteident, pw->pw_name);
- /* H* mod: if non-anonymous user, copy it to "authuser" so everyone can
-@@ -5888,7 +5888,7 @@
-
- remotehost[sizeof(remotehost) - 1] = '\0';
- sprintf(proctitle, "%s: connected", remotehost);
-- setproctitle(proctitle);
-+ setproctitle("%s", proctitle);
-
- wu_authenticate();
- /* Create a composite source identification string, to improve the logging
-@@ -6298,7 +6298,7 @@
+@@ -6435,7 +6435,7 @@
dirlist = ftpglob(whichfiles);
sdirlist = dirlist; /* save to free later */
if (globerr != NULL) {
@@ -60,7 +30,7 @@
goto globfree;
}
else if (dirlist == NULL) {
-@@ -6346,7 +6346,6 @@
+@@ -6486,7 +6486,6 @@
}
goto globfree;
}
@@ -68,7 +38,7 @@
if (dout == NULL) {
dout = dataconn("file list", (off_t) - 1, "w");
if (dout == NULL)
-@@ -6369,7 +6368,6 @@
+@@ -6509,7 +6508,6 @@
byte_count_out++;
}
#endif