aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-09-03 07:01:49 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-09-03 07:01:49 +0000
commitbae1a75731b4e712d16398205104721b05ee2ca1 (patch)
tree332142a05a28e80e9b6d953804286bb45abcaadd /lib/url.c
parentf5adc8e53f05274e36b81ee87b2a8e352ee3b530 (diff)
use the LIBCURL_NAME instead of the "hardcoded" string
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/url.c b/lib/url.c
index 571362bf6..3bfcafb18 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 2000, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 2001, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* In order to be useful for every potential user, curl and libcurl are
* dual-licensed under the MPL and the MIT/X-derivate licenses.
@@ -1769,7 +1769,8 @@ static CURLcode Connect(struct SessionHandle *data,
conn->curl_close = Curl_http_close;
#else /* USE_SSLEAY */
- failf(data, "libcurl was built with SSL disabled, https: not supported!");
+ failf(data, LIBCURL_NAME
+ " was built with SSL disabled, https: not supported!");
return CURLE_UNSUPPORTED_PROTOCOL;
#endif /* !USE_SSLEAY */
}
@@ -1795,7 +1796,8 @@ static CURLcode Connect(struct SessionHandle *data,
#ifdef USE_SSLEAY
conn->protocol |= PROT_FTPS;
#else
- failf(data, "libcurl was built with SSL disabled, ftps: not supported!");
+ failf(data, LIBCURL_NAME
+ " was built with SSL disabled, ftps: not supported!");
return CURLE_UNSUPPORTED_PROTOCOL;
#endif /* !USE_SSLEAY */
}