Give IP address instead of hex number when connecting tcp socket failed.
authorIvo Timmermans <ivo@lychnis.net>
Sun, 14 May 2000 21:07:16 +0000 (21:07 +0000)
committerIvo Timmermans <ivo@lychnis.net>
Sun, 14 May 2000 21:07:16 +0000 (21:07 +0000)
src/net.c

index 6de95b5..f8c7306 100644 (file)
--- a/src/net.c
+++ b/src/net.c
@@ -654,8 +654,8 @@ cp
 
   if(connect(nfd, (struct sockaddr *)&a, sizeof(a)) == -1)
     {
 
   if(connect(nfd, (struct sockaddr *)&a, sizeof(a)) == -1)
     {
-      syslog(LOG_ERR, "Create connection to %08lx:%d failed: %m", ntohs(cl->real_ip),
-            cl->port);
+      syslog(LOG_ERR, "Connecting to " IP_ADDR_S ":%d failed: %m",
+            IP_ADDR_V(cl->real_ip), cl->port);
       return -1;
     }
 
       return -1;
     }