pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/security/libtasn1
Module Name: pkgsrc
Committed By: dholland
Date: Sun Apr 29 03:41:43 UTC 2018
Modified Files:
pkgsrc/security/libtasn1: distinfo
Added Files:
pkgsrc/security/libtasn1/patches: patch-lib_ASN1.y
Log Message:
Use <ctype.h> properly. Noted in PR 51821.
To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 pkgsrc/security/libtasn1/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/security/libtasn1/patches/patch-lib_ASN1.y
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/security/libtasn1/distinfo
diff -u pkgsrc/security/libtasn1/distinfo:1.49 pkgsrc/security/libtasn1/distinfo:1.50
--- pkgsrc/security/libtasn1/distinfo:1.49 Fri Aug 18 21:53:47 2017
+++ pkgsrc/security/libtasn1/distinfo Sun Apr 29 03:41:42 2018
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.49 2017/08/18 21:53:47 adam Exp $
+$NetBSD: distinfo,v 1.50 2018/04/29 03:41:42 dholland Exp $
SHA1 (libtasn1-4.12.tar.gz) = f9a05b3b8acf319d89f07267407c03b184c4e3b0
RMD160 (libtasn1-4.12.tar.gz) = a3062789a73655c83f99a12af8aab3c92c8acdf8
SHA512 (libtasn1-4.12.tar.gz) = 6c551670949881193e39122f72948e4999ff1ba377f9ee5963d0a4ad1b84256e4fe42e9f6d6a2aa9f7d4ef7acc0e5174fb5cc3df5298524cdeda92f4b8c104f7
Size (libtasn1-4.12.tar.gz) = 1888450 bytes
+SHA1 (patch-lib_ASN1.y) = 5d8cf15002d29feba370e7e44397df663ee24bb0
Added files:
Index: pkgsrc/security/libtasn1/patches/patch-lib_ASN1.y
diff -u /dev/null pkgsrc/security/libtasn1/patches/patch-lib_ASN1.y:1.1
--- /dev/null Sun Apr 29 03:41:43 2018
+++ pkgsrc/security/libtasn1/patches/patch-lib_ASN1.y Sun Apr 29 03:41:43 2018
@@ -0,0 +1,15 @@
+$NetBSD: patch-lib_ASN1.y,v 1.1 2018/04/29 03:41:43 dholland Exp $
+
+Use <ctype.h> correctly.
+
+--- lib/ASN1.y~ 2017-01-25 08:45:09.000000000 +0000
++++ lib/ASN1.y
+@@ -575,7 +575,7 @@ _asn1_yylex ()
+
+ /* Is STRING a number? */
+ for (k = 0; k < counter; k++)
+- if (!isdigit ((int)string[k]))
++ if (!isdigit ((unsigned char)string[k]))
+ break;
+ if (k >= counter)
+ {
Home |
Main Index |
Thread Index |
Old Index