summaryrefslogtreecommitdiff
path: root/test/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2017-03-04 18:19:24 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2017-03-04 18:19:24 +0000
commit768e8b5bdaa5565979268013fa1cba6800174d94 (patch)
tree93865f0cec8800dc1c5729c21e2b1b36bb57143b /test/src
parent109b7eb1b04aaaea7fd6c75108f99c7fcac15874 (diff)
downloadexim4-768e8b5bdaa5565979268013fa1cba6800174d94.tar.gz
Testsuite: sys_errlist[] not supported on all platforms
Diffstat (limited to 'test/src')
-rw-r--r--test/src/client.c2
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);