mirror of
https://github.com/curl/curl.git
synced 2025-04-12 16:20:35 +08:00
Simplified code around 'tld_errmsg' a bit.
This commit is contained in:
parent
884171aecf
commit
25c064c888
@ -2490,10 +2490,7 @@ static bool tld_check_name(struct SessionHandle *data,
|
||||
char *uc_name = NULL;
|
||||
int rc;
|
||||
#ifndef CURL_DISABLE_VERBOSE_STRINGS
|
||||
char *tld_errmsg;
|
||||
#ifndef HAVE_TLD_STRERROR
|
||||
char no_msg[] = "<no msg>";
|
||||
#endif
|
||||
char *tld_errmsg = "<no msg>";
|
||||
#else
|
||||
(void)data;
|
||||
#endif
|
||||
@ -2508,8 +2505,6 @@ static bool tld_check_name(struct SessionHandle *data,
|
||||
if (rc != TLD_SUCCESS)
|
||||
#ifdef HAVE_TLD_STRERROR
|
||||
tld_errmsg = (char *)tld_strerror((Tld_rc)rc);
|
||||
#else
|
||||
tld_errmsg = no_msg;
|
||||
#endif
|
||||
if (rc == TLD_INVALID)
|
||||
infof(data, "WARNING: %s; pos %u = `%c'/0x%02X\n",
|
||||
|
Loading…
x
Reference in New Issue
Block a user