summaryrefslogtreecommitdiff
path: root/tests/libtest/lib525.c
diff options
context:
space:
mode:
authorMax Dymond <max.dymond@metaswitch.com>2017-07-10 13:50:15 +0100
committerMarcel Raad <Marcel.Raad@teamviewer.com>2017-07-10 16:19:23 +0200
commite909de65b907ae2be5874201b6881a5196e68c17 (patch)
tree2b4d0b4208b0511b3ab4eaca8c311a7e211dbfa8 /tests/libtest/lib525.c
parenta5834e525deb6d233990ae2288b156728db32cec (diff)
downloadgnurl-e909de65b907ae2be5874201b6881a5196e68c17.tar.gz
gnurl-e909de65b907ae2be5874201b6881a5196e68c17.tar.bz2
gnurl-e909de65b907ae2be5874201b6881a5196e68c17.zip
tests: Fix up issues with errno in test files
Closes https://github.com/curl/curl/pull/1671
Diffstat (limited to 'tests/libtest/lib525.c')
-rw-r--r--tests/libtest/lib525.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/libtest/lib525.c b/tests/libtest/lib525.c
index 4bf259d21..f468efa25 100644
--- a/tests/libtest/lib525.c
+++ b/tests/libtest/lib525.c
@@ -55,7 +55,7 @@ int test(char *URL)
hd_src = fopen(libtest_arg2, "rb");
if(NULL == hd_src) {
- error = ERRNO;
+ error = errno;
fprintf(stderr, "fopen failed with error: %d (%s)\n",
error, strerror(error));
fprintf(stderr, "Error opening file: (%s)\n", libtest_arg2);
@@ -66,7 +66,7 @@ int test(char *URL)
hd = fstat(fileno(hd_src), &file_info);
if(hd == -1) {
/* can't open file, bail out */
- error = ERRNO;
+ error = errno;
fprintf(stderr, "fstat() failed with error: %d (%s)\n",
error, strerror(error));
fprintf(stderr, "ERROR: cannot open file (%s)\n", libtest_arg2);