diff options
author | Max Dymond <max.dymond@metaswitch.com> | 2017-07-10 13:50:15 +0100 |
---|---|---|
committer | Marcel Raad <Marcel.Raad@teamviewer.com> | 2017-07-10 16:19:23 +0200 |
commit | e909de65b907ae2be5874201b6881a5196e68c17 (patch) | |
tree | 2b4d0b4208b0511b3ab4eaca8c311a7e211dbfa8 /tests/libtest/lib591.c | |
parent | a5834e525deb6d233990ae2288b156728db32cec (diff) |
tests: Fix up issues with errno in test files
Closes https://github.com/curl/curl/pull/1671
Diffstat (limited to 'tests/libtest/lib591.c')
-rw-r--r-- | tests/libtest/lib591.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/lib591.c b/tests/libtest/lib591.c index 7d50f894c..c04d3fbae 100644 --- a/tests/libtest/lib591.c +++ b/tests/libtest/lib591.c @@ -50,7 +50,7 @@ int test(char *URL) upload = fopen(libtest_arg3, "rb"); if(!upload) { - error = ERRNO; + error = errno; fprintf(stderr, "fopen() failed with error: %d (%s)\n", error, strerror(error)); fprintf(stderr, "Error opening file: (%s)\n", libtest_arg3); |