summaryrefslogtreecommitdiff
path: root/ftp/proftpd-devel/files/patch-bc
diff options
context:
space:
mode:
authorMichael Haro <mharo@FreeBSD.org>2001-03-07 00:32:00 +0000
committerMichael Haro <mharo@FreeBSD.org>2001-03-07 00:32:00 +0000
commit5fab0552fcfc94516f944e25f2ed52534fb9b1e7 (patch)
treed5e54392068fd16e414ecd113f102d93ffee0564 /ftp/proftpd-devel/files/patch-bc
parentUpdate to 20010306 (and synch with changes in news/inn/Makefile) (diff)
Update to 1.2.1
* Update master sites * Use bzip2 distfiles instead of gzip * Add WITHOUT_PAM support. * Add the quota and wrap (TCP Wrappers support) modules. Submitted by: Anders Nordby <anders@fix.no>
Notes
Notes: svn path=/head/; revision=39157
Diffstat (limited to 'ftp/proftpd-devel/files/patch-bc')
-rw-r--r--ftp/proftpd-devel/files/patch-bc19
1 files changed, 0 insertions, 19 deletions
diff --git a/ftp/proftpd-devel/files/patch-bc b/ftp/proftpd-devel/files/patch-bc
deleted file mode 100644
index bd908a4fa9fa..000000000000
--- a/ftp/proftpd-devel/files/patch-bc
+++ /dev/null
@@ -1,19 +0,0 @@
---- contrib/mod_sqlpw.c.old Sun Feb 11 19:52:06 2001
-+++ contrib/mod_sqlpw.c Sun Feb 11 19:53:42 2001
-@@ -302,8 +302,6 @@
- if (!g.homedir)
- return DECLINED (cmd);
-
-- if (!g.pw.pw_name)
-- {
- g.pw.pw_name = pstrdup(session.pool, cmd->argv[0]);
- if (g.sql_uid)
- g.pw.pw_uid = atoi (_uservar (cmd, cmd->argv[0], g.sql_uid) ? : "0");
-@@ -323,7 +321,6 @@
- /* FIXME: unnecessary mysqlism */
- mysql_escape_string (g.user, g.pw.pw_name, strlen (g.pw.pw_name));
- g.user[ARBITRARY_MAX - 1] = 0;
-- }
-
- return mod_create_data (cmd, &g.pw);
- }