summaryrefslogtreecommitdiff
path: root/vchat-protocol.c
diff options
context:
space:
mode:
Diffstat (limited to 'vchat-protocol.c')
-rwxr-xr-xvchat-protocol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vchat-protocol.c b/vchat-protocol.c
index af06c6a..aefe419 100755
--- a/vchat-protocol.c
+++ b/vchat-protocol.c
@@ -831,7 +831,7 @@ networkinput (void)
831 /* no bytes transferred? raise error message, bail out */ 831 /* no bytes transferred? raise error message, bail out */
832 if (bytes < 0) 832 if (bytes < 0)
833 { 833 {
834 snprintf (tmpstr, TMPSTRSIZE, "Receive fails, %s.", sys_errlist[errno]); 834 snprintf (tmpstr, TMPSTRSIZE, "Receive fails, %s.", strerror(errno));
835 strncpy(errstr,tmpstr,TMPSTRSIZE-2); 835 strncpy(errstr,tmpstr,TMPSTRSIZE-2);
836 errstr[TMPSTRSIZE-2] = '\0'; 836 errstr[TMPSTRSIZE-2] = '\0';
837 strcat(errstr,"\n"); 837 strcat(errstr,"\n");