From: Andre Noll Date: Sat, 9 Feb 2008 10:31:07 +0000 (+0100) Subject: net.c: Fix error messages in makesock(). X-Git-Tag: v0.3.1~44 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=12d15401324e33962f1802e2d6844fdfd6d62bb9 net.c: Fix error messages in makesock(). --- diff --git a/net.c b/net.c index 09963f2e..543485e7 100644 --- a/net.c +++ b/net.c @@ -172,7 +172,7 @@ int makesock(unsigned l3type, unsigned l4type, int passive, if ((rc = getaddrinfo(host, port, &hints, passive ? &local : &remote))) { PARA_ERROR_LOG("can not resolve %s address %s#%s: %s.\n", layer4_name(l4type), - host? : (passive? "[loopback]" : "[localhost]"), + host? host : (passive? "[loopback]" : "[localhost]"), port, gai_strerror(rc)); return -E_ADDRESS_LOOKUP; } @@ -226,7 +226,7 @@ get_next_src: if (src == NULL && dst == NULL) { PARA_ERROR_LOG("can not create %s socket %s#%s.\n", - layer4_name(l4type), host? : (passive? + layer4_name(l4type), host? host : (passive? "[loopback]" : "[localhost]"), port); return -ERRNO_TO_PARA_ERROR(errno); }