diff options
Diffstat (limited to 'tests/libtest/lib674.c')
-rw-r--r-- | tests/libtest/lib674.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/libtest/lib674.c b/tests/libtest/lib674.c index 336cf77f5..1b8d28710 100644 --- a/tests/libtest/lib674.c +++ b/tests/libtest/lib674.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -49,7 +49,8 @@ int test(char *URL) uc = curl_url_set(urlp, CURLUPART_URL, URL, 0); if(uc) { - fprintf(stderr, "problem setting CURLUPART_URL."); + fprintf(stderr, "problem setting CURLUPART_URL: %s.", + curl_url_strerror(uc)); goto test_cleanup; } |