pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/pkgsrc-2017Q2]: pkgsrc/security/hitch Pullup ticket #5501 - requested...
details: https://anonhg.NetBSD.org/pkgsrc/rev/10ce5f53886f
branches: pkgsrc-2017Q2
changeset: 408634:10ce5f53886f
user: bsiegert <bsiegert%pkgsrc.org@localhost>
date: Mon Jul 10 19:39:19 2017 +0000
description:
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.
diffstat:
security/hitch/distinfo | 4 ++--
security/hitch/patches/patch-src_configuration.c | 11 ++++++++++-
2 files changed, 12 insertions(+), 3 deletions(-)
diffs (36 lines):
diff -r eda1a1cc9f53 -r 10ce5f53886f security/hitch/distinfo
--- a/security/hitch/distinfo Mon Jul 10 19:34:34 2017 +0000
+++ b/security/hitch/distinfo Mon Jul 10 19:39:19 2017 +0000
@@ -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
diff -r eda1a1cc9f53 -r 10ce5f53886f security/hitch/patches/patch-src_configuration.c
--- a/security/hitch/patches/patch-src_configuration.c Mon Jul 10 19:34:34 2017 +0000
+++ b/security/hitch/patches/patch-src_configuration.c Mon Jul 10 19:39:19 2017 +0000
@@ -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 @@
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