mirror of
https://github.com/curl/curl.git
synced 2026-07-16 02:27:16 +03:00
urlapi: use a correct value for CURLU_NO_GUESS_SCHEME
It was mistakenly set to the same value as CURLU_GET_EMPTY uses.
Reported-by: Patrick Monnerat
Bug: 655d44d139
Closes #13926
This commit is contained in:
parent
9e900054b4
commit
02730befc1
1 changed files with 1 additions and 1 deletions
|
|
@ -102,7 +102,7 @@ typedef enum {
|
|||
#define CURLU_GET_EMPTY (1<<14) /* allow empty queries and fragments
|
||||
when extracting the URL or the
|
||||
components */
|
||||
#define CURLU_NO_GUESS_SCHEME (1<<14) /* for get, don't accept a guess */
|
||||
#define CURLU_NO_GUESS_SCHEME (1<<15) /* for get, don't accept a guess */
|
||||
|
||||
typedef struct Curl_URL CURLU;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue