diff options
Diffstat (limited to 'libbb/xconnect.c')
-rw-r--r-- | libbb/xconnect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/xconnect.c b/libbb/xconnect.c index 2443bb2..4cd22c7 100644 --- a/libbb/xconnect.c +++ b/libbb/xconnect.c @@ -64,7 +64,7 @@ int xconnect(struct sockaddr_in *s_addr) int s = socket(AF_INET, SOCK_STREAM, 0); if (connect(s, (struct sockaddr_in *)s_addr, sizeof(struct sockaddr_in)) < 0) { - bb_perror_msg_and_die("Unable to connect to remote host (%s)", + bb_perror_msg_and_die("Unable to connect to remote host (%s)", inet_ntoa(s_addr->sin_addr)); } return s; |