pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/security/rvault



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.

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':



Home | Main Index | Thread Index | Old Index