tool_getparam: make --doh-url "" switch it off

A possible future addition could be to parse the URL first too to verify
that it is valid before trying to use it.

Assisted-by: Jay Satiro
Closes #9207
This commit is contained in:
Daniel Stenberg 2022-07-26 11:00:31 +02:00
parent 0c47d879ae
commit f7e14fee68
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
2 changed files with 6 additions and 0 deletions

View file

@ -701,6 +701,9 @@ ParameterError getparameter(const char *flag, /* f or -long-flag */
break;
case 'C': /* doh-url */
GetStr(&config->doh_url, nextarg);
if(config->doh_url && !config->doh_url[0])
/* if given a blank string, we make it NULL again */
Curl_safefree(config->doh_url);
break;
case 'd': /* ciphers */
GetStr(&config->cipher_list, nextarg);