diff options
Diffstat (limited to 'tests/libtest/lib1536.c')
-rw-r--r-- | tests/libtest/lib1536.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/lib1536.c b/tests/libtest/lib1536.c index 7f5b61499..0c04bbf8e 100644 --- a/tests/libtest/lib1536.c +++ b/tests/libtest/lib1536.c @@ -72,7 +72,7 @@ int test(char *URL) if(memcmp(scheme, "HTTP", 5) != 0) { fprintf(stderr, "%s:%d scheme of http resource is incorrect; " "expected 'HTTP' but is %s\n", - __FILE__, __LINE__, CURLPROTO_HTTP, + __FILE__, __LINE__, (scheme == NULL ? "NULL" : "invalid")); res = CURLE_HTTP_RETURNED_ERROR; goto test_cleanup; |