]> granicus.if.org Git - curl/commitdiff
explain tld_check_name()
authorDaniel Stenberg <daniel@haxx.se>
Tue, 20 Dec 2005 22:46:12 +0000 (22:46 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 20 Dec 2005 22:46:12 +0000 (22:46 +0000)
lib/url.c

index 781d1d11d5c5664e97b1f3e8852bc289dbd70608..e012e01af2377f83c86e3dba3a3bc1802f6e56e9 100644 (file)
--- a/lib/url.c
+++ b/lib/url.c
@@ -2174,7 +2174,7 @@ CURLcode Curl_protocol_connect(struct connectdata *conn, bool *protocol_done)
  * Helpers for IDNA convertions.
  */
 #ifdef USE_LIBIDN
-static bool is_ASCII_name (const char *hostname)
+static bool is_ASCII_name(const char *hostname)
 {
   const unsigned char *ch = (const unsigned char*)hostname;
 
@@ -2188,8 +2188,8 @@ static bool is_ASCII_name (const char *hostname)
 /*
  * Check if characters in hostname is allowed in Top Level Domain.
  */
-static bool tld_check_name (struct SessionHandle *data,
-                            const char *ace_hostname)
+static bool tld_check_name(struct SessionHandle *data,
+                           const char *ace_hostname)
 {
   size_t err_pos;
   char *uc_name = NULL;
@@ -2245,7 +2245,9 @@ static void fix_hostname(struct connectdata *conn, struct hostname *host)
       infof(data, "Failed to convert %s to ACE; %s\n",
             host->name, Curl_idn_strerror(conn,rc));
     else {
-      tld_check_name(data, ace_hostname);
+      /* tld_check_name() displays a warning if the host name contains
+         "illegal" characters for this TLD */
+      (void)tld_check_name(data, ace_hostname);
 
       host->encalloc = ace_hostname;
       /* change the name pointer to point to the encoded hostname */