Received: by mail.netbsd.org (Postfix, from userid 605) id 559CF84D24; Sat, 24 Nov 2018 11:29:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3E9B284D1F for ; Sat, 24 Nov 2018 11:29:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id ozCixXCiSJyK for ; Sat, 24 Nov 2018 11:29:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5DAAC84CFB for ; Sat, 24 Nov 2018 11:29:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 50128FB1F; Sat, 24 Nov 2018 11:29:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1543058955140570" MIME-Version: 1.0 Date: Sat, 24 Nov 2018 11:29:15 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/net/bftpd To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20181124112915.50128FB1F@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1543058955140570 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sat Nov 24 11:29:15 UTC 2018 Modified Files: pkgsrc/net/bftpd: Makefile distinfo Log Message: bftpd: Update to version 5.0 Changes: Jesse Smith -> 5.0 - Added more checks to places where we are mapping a file or checking for symbolic links. Should avoid trying to operating on invalid path names or broken symlinks. Issue reported by Xu. Jesse Smith -> 4.9 - Several checks added to chdir() and other return codes to make sure syscalls are all returning properly. Patch provided by Zhouyang Jia. - Fixed some compiler warnings due to unused or oddly indented code. Jesse Smith -> 4.8 - Fixed potential double-free bug during Bftpd shutdown. - Fixed potential unititalized variable. Thanks to Alex for reporting these bugs. Jesse Smith -> 4.7 - Fixed memory leak in rename function. Thanks to Alex for reporting this bug. Jesse Smith -> 4.6 - Avoid memory corruption when reading config file by initalizing memory. - Make sure CHROOT is default option, even if it is not specified in the config file. Thanks for Anton Yuzhaninov for providing the above two fixes. Jesse Smith -> 4.5 - Avoid potential buffer underflow in main.c Thanks to Andreas for pointing out this problem. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/net/bftpd/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/net/bftpd/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1543058955140570 Content-Disposition: inline Content-Length: 1565 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/bftpd/Makefile diff -u pkgsrc/net/bftpd/Makefile:1.17 pkgsrc/net/bftpd/Makefile:1.18 --- pkgsrc/net/bftpd/Makefile:1.17 Sun Sep 18 18:08:49 2016 +++ pkgsrc/net/bftpd/Makefile Sat Nov 24 11:29:15 2018 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.17 2016/09/18 18:08:49 wiedi Exp $ +# $NetBSD: Makefile,v 1.18 2018/11/24 11:29:15 nia Exp $ # -DISTNAME= bftpd-4.4 +DISTNAME= bftpd-5.0 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=bftpd/} Index: pkgsrc/net/bftpd/distinfo diff -u pkgsrc/net/bftpd/distinfo:1.9 pkgsrc/net/bftpd/distinfo:1.10 --- pkgsrc/net/bftpd/distinfo:1.9 Sun Mar 6 13:29:34 2016 +++ pkgsrc/net/bftpd/distinfo Sat Nov 24 11:29:15 2018 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.9 2016/03/06 13:29:34 nros Exp $ +$NetBSD: distinfo,v 1.10 2018/11/24 11:29:15 nia Exp $ -SHA1 (bftpd-4.4.tar.gz) = 7852775d98782739b785ebcd1d56b11b65f738c3 -RMD160 (bftpd-4.4.tar.gz) = 5fab388cae684c1d34b854999bb4c090c02ad3c8 -SHA512 (bftpd-4.4.tar.gz) = 290efff4db849f7a3004a268a78a499b866bd7f9061f7880813a3bf1db2cd63ff508e64bada1b6bcd48ab40732e3fb0da9b29fd49712149f9945cd53920a7d62 -Size (bftpd-4.4.tar.gz) = 164940 bytes +SHA1 (bftpd-5.0.tar.gz) = afed309a12bc97054530e802b778d9de59a19dbd +RMD160 (bftpd-5.0.tar.gz) = 577c7752c57e2a2a66ca18e577b5a09a6d65d0de +SHA512 (bftpd-5.0.tar.gz) = 99daa36647e98cc78bc2fe79843af73f0862fd21eedf8656d5c3f28cc298ce84c6937fca50b8b40f287bf702cf3f720c7858ea68029d6ba2bc8e281347f6da89 +Size (bftpd-5.0.tar.gz) = 165751 bytes SHA1 (patch-aa) = 3b4444d79533fd8b2ec7bc99eb53c34ca2113350 --_----------=_1543058955140570--