pkgsrc-WIP-changes archive

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

nss-hg: Moved ctype patch, don't destroy distinfo



Module Name:	pkgsrc-wip
Committed By:	coypu <coypu%sdf.org@localhost>
Pushed By:	coypu
Date:		Tue Feb 9 03:25:58 2016 +0200
Changeset:	9eb46251eee362775e84b4f30f549d5943203705

Modified Files:
	nss-hg/distinfo
	nss-hg/patches/patch-lib_dbm_src_mktemp.c

Log Message:
nss-hg: Moved ctype patch, don't destroy distinfo

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=9eb46251eee362775e84b4f30f549d5943203705

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 nss-hg/distinfo                           | 2 +-
 nss-hg/patches/patch-lib_dbm_src_mktemp.c | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diffs:
diff --git a/nss-hg/distinfo b/nss-hg/distinfo
index 434e270..17fc44f 100644
--- a/nss-hg/distinfo
+++ b/nss-hg/distinfo
@@ -15,7 +15,7 @@ SHA1 (patch-lib_Makefile) = cd6f58c0ed02a93b7e6ef75c2763ee3633e453eb
 SHA1 (patch-lib_certdb_alg1485.c) = 01fc731901ff59e24723091345f09f3eb2c85956
 SHA1 (patch-lib_certdb_certdb.c) = 8636b6b53befe44e3c11a93980eecb2a440815b1
 SHA1 (patch-lib_certhigh_ocsp.c) = 7ac69dfec32d7102757133c28354dc33f762104e
-SHA1 (patch-lib_dbm_src_mktemp.c) = ef291e7100775fcccad8515d52c5ad6857ebc1ed
+SHA1 (patch-lib_dbm_src_mktemp.c) = 80c9cbd6061280ecb26445083c2ee2e48277186c
 SHA1 (patch-lib_freebl_Makefile) = aedfd6f12872bc94256e1c6be4628334f363c2bb
 SHA1 (patch-lib_freebl_blapi.h) = 00e0dcfe1f6a54bffa97c4852f9f9fcb5ab783e1
 SHA1 (patch-lib_freebl_config.mk) = ade7f656b900f93f1fdaa036a733529af132d2ca
diff --git a/nss-hg/patches/patch-lib_dbm_src_mktemp.c b/nss-hg/patches/patch-lib_dbm_src_mktemp.c
index abd3ca8..cec4e72 100644
--- a/nss-hg/patches/patch-lib_dbm_src_mktemp.c
+++ b/nss-hg/patches/patch-lib_dbm_src_mktemp.c
@@ -2,14 +2,14 @@ $NetBSD$
 
 Missing ctype(3) casts.
 
---- lib/dbm/src/mktemp.c.orig	2016-02-08 07:30:39.000000000 +0000
+--- lib/dbm/src/mktemp.c.orig	2016-02-08 17:31:58.000000000 +0000
 +++ lib/dbm/src/mktemp.c
 @@ -138,7 +138,7 @@ _gettemp(char *path, register int *doope
              if (*trv == 'z')
                  *trv++ = 'a';
              else {
 -                if (isdigit(*trv))
-+                if (isdigit((unsigned char)*trv))
++                if (isdigit((unsigned char) *trv))
                      *trv = 'a';
                  else
                      ++*trv;


Home | Main Index | Thread Index | Old Index