pkgsrc-Changes archive

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

CVS commit: [pkgsrc-2017Q2] pkgsrc/security/hitch



Module Name:    pkgsrc
Committed By:   bsiegert
Date:           Mon Jul 10 19:39:19 UTC 2017

Modified Files:
        pkgsrc/security/hitch [pkgsrc-2017Q2]: distinfo
        pkgsrc/security/hitch/patches [pkgsrc-2017Q2]:
            patch-src_configuration.c

Log Message:
Pullup ticket #5501 - requested by joerg
security/hitch: build fix

Revisions pulled up:
- security/hitch/distinfo                                       1.7
- security/hitch/patches/patch-src_configuration.c              1.2

---
   Module Name: pkgsrc
   Committed By:        joerg
   Date:                Mon Jul  3 13:03:02 UTC 2017

   Modified Files:
        pkgsrc/security/hitch: distinfo
        pkgsrc/security/hitch/patches: patch-src_configuration.c

   Log Message:
   Fix ctype use.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.6.2.1 pkgsrc/security/hitch/distinfo
cvs rdiff -u -r1.1 -r1.1.4.1 \
    pkgsrc/security/hitch/patches/patch-src_configuration.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/hitch/distinfo
diff -u pkgsrc/security/hitch/distinfo:1.6 pkgsrc/security/hitch/distinfo:1.6.2.1
--- pkgsrc/security/hitch/distinfo:1.6  Wed Jun 14 13:28:57 2017
+++ pkgsrc/security/hitch/distinfo      Mon Jul 10 19:39:19 2017
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.6 2017/06/14 13:28:57 fhajny Exp $
+$NetBSD: distinfo,v 1.6.2.1 2017/07/10 19:39:19 bsiegert Exp $
 
 SHA1 (hitch-1.4.6.tar.gz) = 4dbf533706129bfd7a45f6dff020e2ba281a4abc
 RMD160 (hitch-1.4.6.tar.gz) = eb576b1b878d7184c3dc143c8b4d954e52ec03c3
 SHA512 (hitch-1.4.6.tar.gz) = e1dbbbeda4cfcd2d8afeba94f48bc7094e767aa9d18c778cee994c9bf5508cd503a99dc23cbe327df0e042e86d57d8d60f36143f9c1545f2f98ba5b9d6511842
 Size (hitch-1.4.6.tar.gz) = 308210 bytes
 SHA1 (patch-hitch.conf.example) = 1c922c2e294362ef009ff60bfe43f746de596087
-SHA1 (patch-src_configuration.c) = ba89c7c987159f66b1694435613aa89a6f9574de
+SHA1 (patch-src_configuration.c) = 030ba883e99b1ce0ab13d54952dd53a94ff16cbd

Index: pkgsrc/security/hitch/patches/patch-src_configuration.c
diff -u pkgsrc/security/hitch/patches/patch-src_configuration.c:1.1 pkgsrc/security/hitch/patches/patch-src_configuration.c:1.1.4.1
--- pkgsrc/security/hitch/patches/patch-src_configuration.c:1.1 Mon Jan  9 13:02:20 2017
+++ pkgsrc/security/hitch/patches/patch-src_configuration.c     Mon Jul 10 19:39:19 2017
@@ -1,4 +1,4 @@
-$NetBSD: patch-src_configuration.c,v 1.1 2017/01/09 13:02:20 fhajny Exp $
+$NetBSD: patch-src_configuration.c,v 1.1.4.1 2017/07/10 19:39:19 bsiegert Exp $
 
 Sane default options.
 
@@ -13,3 +13,12 @@ Sane default options.
        r->OCSP_VFY = 0;
        r->OCSP_RESP_TMO = 10.0;
        r->OCSP_CONN_TMO = 4.0;
+@@ -1116,7 +1116,7 @@ create_alpn_callback_data(hitch_config *
+ 
+       // first remove spaces while copying to cfg->ALPN_PROTOS_LV
+       for(j = 0; j < l; j++)
+-              if (!isspace(cfg->ALPN_PROTOS[j])) {
++              if (!isspace((unsigned char)cfg->ALPN_PROTOS[j])) {
+                       cfg->ALPN_PROTOS_LV[i] = cfg->ALPN_PROTOS[j];
+                       i++;
+               }



Home | Main Index | Thread Index | Old Index