mirror of
https://github.com/curl/curl.git
synced 2026-08-25 08:13:31 +03:00
ldap: return CURLE_URL_MALFORMAT for bad URL
For consistency, use the same return code for URL malformats, independently of what scheme that is used. Previously this would return CURLE_LDAP_INVALID_URL, but starting now that error cannot be returned. Closes #8170
This commit is contained in:
parent
2a19ad473a
commit
7edb0fcf3f
6 changed files with 12 additions and 15 deletions
|
|
@ -5,7 +5,7 @@
|
|||
* | (__| |_| | _ <| |___
|
||||
* \___|\___/|_| \_\_____|
|
||||
*
|
||||
* Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
* Copyright (C) 1998 - 2022, 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
|
||||
|
|
@ -306,8 +306,8 @@ static CURLcode ldap_do(struct Curl_easy *data, bool *done)
|
|||
rc = _ldap_url_parse(data, conn, &ludp);
|
||||
#endif
|
||||
if(rc) {
|
||||
failf(data, "LDAP local: %s", ldap_err2string(rc));
|
||||
result = CURLE_LDAP_INVALID_URL;
|
||||
failf(data, "Bad LDAP URL: %s", ldap_err2string(rc));
|
||||
result = CURLE_URL_MALFORMAT;
|
||||
goto quit;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* | (__| |_| | _ <| |___
|
||||
* \___|\___/|_| \_\_____|
|
||||
*
|
||||
* Copyright (C) 2004 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
* Copyright (C) 2004 - 2022, 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
|
||||
|
|
@ -224,9 +224,6 @@ curl_easy_strerror(CURLcode error)
|
|||
case CURLE_BAD_CONTENT_ENCODING:
|
||||
return "Unrecognized or bad HTTP Content or Transfer-Encoding";
|
||||
|
||||
case CURLE_LDAP_INVALID_URL:
|
||||
return "Invalid LDAP URL";
|
||||
|
||||
case CURLE_FILESIZE_EXCEEDED:
|
||||
return "Maximum file size exceeded";
|
||||
|
||||
|
|
@ -337,6 +334,7 @@ curl_easy_strerror(CURLcode error)
|
|||
case CURLE_OBSOLETE50:
|
||||
case CURLE_OBSOLETE51:
|
||||
case CURLE_OBSOLETE57:
|
||||
case CURLE_OBSOLETE62:
|
||||
case CURL_LAST:
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue