summaryrefslogtreecommitdiff
path: root/net/bftpd/patches/patch-ac
diff options
context:
space:
mode:
authortron <tron>2010-06-07 19:06:20 +0000
committertron <tron>2010-06-07 19:06:20 +0000
commit88d6887dcf9d12374aa92741eae2f294e28d27b1 (patch)
tree85d105baf710a49e245141f8688f879d0a7fc0a6 /net/bftpd/patches/patch-ac
parent6e307d019b739ccbfc1961924787252ad5a67056 (diff)
downloadpkgsrc-88d6887dcf9d12374aa92741eae2f294e28d27b1.tar.gz
Pullup ticket #3140 - requested by kefren
net/bftpd: security update Revisions pulled up: - net/bftpd/Makefile 1.11-1.12 - net/bftpd/distinfo 1.5-1.6 - net/bftpd/patches/patch-aa 1.4 - net/bftpd/patches/patch-ab delete - net/bftpd/patches/patch-ac 1.1 --- Module Name: pkgsrc Committed By: obache Date: Thu May 27 14:14:30 UTC 2010 Modified Files: pkgsrc/net/bftpd: Makefile distinfo pkgsrc/net/bftpd/patches: patch-aa Added Files: pkgsrc/net/bftpd/patches: patch-ac Removed Files: pkgsrc/net/bftpd/patches: patch-ab Log Message: Update bftpd to 2.8 Based on PR#43352 by Wen Heping. pkgsrc changes: * set LICENSE=gnu-gpl-v2 * simplify patch-aa. * remove patch-ab, replace with SUBST instead, and also replace /etc in manpage. * add patch-ac for fixes standalone mode. XXX: IPv4 only * cosmetics fixes. --- Module Name: pkgsrc Committed By: obache Date: Fri Jun 4 04:30:45 UTC 2010 Modified Files: pkgsrc/net/bftpd: Makefile distinfo Log Message: Update bftpd to 2.9. Jesse Smith <jessefrgsmith@yahoo.ca> -> 2.9 - Bftpdwill attempt to create it's utmp directory if that directory does not exist. Fixes issue on Ubuntu where the direcotry is wiped out at each reboot. - The ROOTDIR option now works properly for anonymous users. Thanks to Paul for reporting this bug.
Diffstat (limited to 'net/bftpd/patches/patch-ac')
-rw-r--r--net/bftpd/patches/patch-ac14
1 files changed, 14 insertions, 0 deletions
diff --git a/net/bftpd/patches/patch-ac b/net/bftpd/patches/patch-ac
new file mode 100644
index 00000000000..7d0546a40a0
--- /dev/null
+++ b/net/bftpd/patches/patch-ac
@@ -0,0 +1,14 @@
+$NetBSD: patch-ac,v 1.1.2.2 2010/06/07 19:06:20 tron Exp $
+
+Bind failed: Address famly not supported by protocol family
+
+--- main.c.orig 2010-04-11 12:21:24.000000000 +0000
++++ main.c
+@@ -248,6 +248,7 @@ int main(int argc, char **argv)
+ sizeof(i));
+ #endif
+ memset((void *) &myaddr, 0, sizeof(myaddr));
++ myaddr.sin_family = AF_INET;
+ if (!((port = strtoul(config_getoption("PORT"), NULL, 10))))
+ port = DEFAULT_PORT;
+ myaddr.sin_port = htons(port);