From cfa05e3a64917162965196e4015721b3021912d9 Mon Sep 17 00:00:00 2001 From: MissValeska Date: Sun, 26 Oct 2014 07:02:26 -0700 Subject: [PATCH] Fixed Debug text. --- src/inet.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/inet.c b/src/inet.c index d47bfdb..1939f38 100644 --- a/src/inet.c +++ b/src/inet.c @@ -1118,8 +1118,8 @@ inet_sendto(int s, const void *msg, size_t len, int flags, break; case EFAULT: error("To Family is: %hu " - "To Data is: %s " - "and: %s", to->sa_family, to->sa_data, strerror(errno)); + "To Data is: %c " + "and: %s", to->sa_family, to->sa_data[14], strerror(errno)); default: error("inet_sendto: Cannot send(): %s", strerror(errno)); return err;