aboutsummaryrefslogtreecommitdiff
path: root/net/libzmq4/files
diff options
context:
space:
mode:
authorLi-Wen Hsu <lwhsu@FreeBSD.org>2015-08-25 17:17:59 +0000
committerLi-Wen Hsu <lwhsu@FreeBSD.org>2015-08-25 17:17:59 +0000
commit2dee8b344cebc0d42f5b385805ce7a193efd3224 (patch)
treee19b121cbdbb6843fe7e2bc57ea8df613008f587 /net/libzmq4/files
parentf47ad15d2247ce6a122a0a4c99e1147ba75016b0 (diff)
downloadports-2dee8b344cebc0d42f5b385805ce7a193efd3224.tar.gz
ports-2dee8b344cebc0d42f5b385805ce7a193efd3224.zip
- Update to 4.1.3
Approved by: koobs (maintainer) MFH: 2015Q3 Differential Revision: https://reviews.freebsd.org/D3402
Notes
Notes: svn path=/head/; revision=395301
Diffstat (limited to 'net/libzmq4/files')
-rw-r--r--net/libzmq4/files/patch-ipv6-connect20
1 files changed, 0 insertions, 20 deletions
diff --git a/net/libzmq4/files/patch-ipv6-connect b/net/libzmq4/files/patch-ipv6-connect
deleted file mode 100644
index 482811f63335..000000000000
--- a/net/libzmq4/files/patch-ipv6-connect
+++ /dev/null
@@ -1,20 +0,0 @@
-15f9ee19cb895f7fb7b6d09ec64d4b82717ee1aa
-diff --git src/socket_base.cpp src/socket_base.cpp
-index bddbaf2..79044b1 100644
---- src/socket_base.cpp
-+++ src/socket_base.cpp
-@@ -717,11 +717,12 @@ int zmq::socket_base_t::connect (const char *addr_)
- // Following code is quick and dirty check to catch obvious errors,
- // without trying to be fully accurate.
- const char *check = address.c_str ();
-- if (isalnum (*check) || isxdigit (*check)) {
-+ if (isalnum (*check) || isxdigit (*check) || *check == '[') {
- check++;
- while (isalnum (*check)
- || isxdigit (*check)
-- || *check == '.' || *check == '-' || *check == ':'|| *check == ';')
-+ || *check == '.' || *check == '-' || *check == ':'|| *check == ';'
-+ || *check == ']')
- check++;
- }
- // Assume the worst, now look for success