diff options
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | src/ip.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -2,6 +2,7 @@ Contributors ============ Alexej Lotz <alexej.lotz@arcor.de> +Andrew Thompson <andy@fud.org.nz> Asko Kauppi <askok@dnainternet.net> Barak Amar <barak.amar@gmail.com> Bernd Prager <bernd@prager.ws> @@ -272,7 +272,7 @@ int zmq::resolve_ip_hostname (sockaddr_storage *addr_, socklen_t *addr_len_, const char *hostname_) { // Find the ':' that separates hostname name from service. - const char *delimiter = strchr (hostname_, ':'); + const char *delimiter = strrchr (hostname_, ':'); if (!delimiter) { errno = EINVAL; return -1; |