diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2017-03-04 18:19:24 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2017-03-04 18:19:24 +0000 |
commit | 768e8b5bdaa5565979268013fa1cba6800174d94 (patch) | |
tree | 93865f0cec8800dc1c5729c21e2b1b36bb57143b | |
parent | 109b7eb1b04aaaea7fd6c75108f99c7fcac15874 (diff) |
Testsuite: sys_errlist[] not supported on all platforms
-rw-r--r-- | test/src/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/client.c b/test/src/client.c index 2c90d565c..4ac130df2 100644 --- a/test/src/client.c +++ b/test/src/client.c @@ -712,7 +712,7 @@ int rc; FILE * new_f; if (!(new_f = fopen(outbuffer+4 , "r"))) { - printf("Unable to open '%s': %s", inptr, sys_errlist[errno]); + printf("Unable to open '%s': %s", inptr, strerror(errno)); exit(74); } do_file(srv, new_f, timeout, inbuffer, bsiz, inptr); |