Received: by mail.netbsd.org (Postfix, from userid 605) id 424DE84DBC; Tue, 19 May 2020 14:00:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BBAEA84D6C for ; Tue, 19 May 2020 14:00:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id w7VsGb9ir4LL for ; Tue, 19 May 2020 14:00:57 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 3FA8C84D44 for ; Tue, 19 May 2020 14:00:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3D2BEFB27; Tue, 19 May 2020 14:00:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158989685751910" MIME-Version: 1.0 Date: Tue, 19 May 2020 14:00:57 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/security/rvault To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20200519140057.3D2BEFB27@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. --_----------=_158989685751910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Tue May 19 14:00:57 UTC 2020 Modified Files: pkgsrc/security/rvault: Makefile distinfo Added Files: pkgsrc/security/rvault/patches: patch-core_cli.c Log Message: Fix ctype use. Bump revision. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/security/rvault/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/security/rvault/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/security/rvault/patches/patch-core_cli.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158989685751910 Content-Disposition: inline Content-Length: 2020 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/rvault/Makefile diff -u pkgsrc/security/rvault/Makefile:1.6 pkgsrc/security/rvault/Makefile:1.7 --- pkgsrc/security/rvault/Makefile:1.6 Wed May 6 14:05:01 2020 +++ pkgsrc/security/rvault/Makefile Tue May 19 14:00:56 2020 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.6 2020/05/06 14:05:01 adam Exp $ +# $NetBSD: Makefile,v 1.7 2020/05/19 14:00:56 joerg Exp $ DISTNAME= rvault-0.3 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GITHUB:=rmind/} GITHUB_TAG= v${PKGVERSION_NOREV} Index: pkgsrc/security/rvault/distinfo diff -u pkgsrc/security/rvault/distinfo:1.3 pkgsrc/security/rvault/distinfo:1.4 --- pkgsrc/security/rvault/distinfo:1.3 Wed Apr 22 16:40:03 2020 +++ pkgsrc/security/rvault/distinfo Tue May 19 14:00:56 2020 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.3 2020/04/22 16:40:03 rmind Exp $ +$NetBSD: distinfo,v 1.4 2020/05/19 14:00:56 joerg Exp $ SHA1 (rvault-0.3.tar.gz) = bdb92e1d0034aa2df07a38f1ec9d6d1a1a0435f0 RMD160 (rvault-0.3.tar.gz) = 5c6323c3b606021685e93c4f4b3050752f84a8a8 SHA512 (rvault-0.3.tar.gz) = 0687d14cf646adccb3c09a3d5a16e771ef9b046bd4e596a487413e83e06709b27a62c2f08a9a23d47f6253cadc1fb7cbe53262455faa6628d5b23d8539f12271 Size (rvault-0.3.tar.gz) = 76921 bytes +SHA1 (patch-core_cli.c) = 8214fe7f75273a0d434751b600d89d70f735a24c Added files: Index: pkgsrc/security/rvault/patches/patch-core_cli.c diff -u /dev/null pkgsrc/security/rvault/patches/patch-core_cli.c:1.1 --- /dev/null Tue May 19 14:00:57 2020 +++ pkgsrc/security/rvault/patches/patch-core_cli.c Tue May 19 14:00:57 2020 @@ -0,0 +1,13 @@ +$NetBSD: patch-core_cli.c,v 1.1 2020/05/19 14:00:57 joerg Exp $ + +--- core/cli.c.orig 2020-05-16 18:22:17.498052418 +0000 ++++ core/cli.c +@@ -208,7 +208,7 @@ mount_vault(const char *datapath, const + switch (ch) { + case 'c': + comp = optarg && ( +- atoi(optarg) || tolower(optarg[0]) == 'y' ++ atoi(optarg) || tolower((unsigned char)optarg[0]) == 'y' + ); + break; + case 'd': --_----------=_158989685751910--