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: https://github.com/curl/curl/commit/655d44d139489625e77cf6790d36
Closes #13926
This commit is contained in:
Daniel Stenberg 2024-06-12 11:06:34 +02:00
parent 9e900054b4
commit 02730befc1
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -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;