aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/util/dnsparser.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/util/dnsparser.c b/src/util/dnsparser.c
index 0e830170e..699f9d592 100644
--- a/src/util/dnsparser.c
+++ b/src/util/dnsparser.c
@@ -60,9 +60,6 @@ GNUNET_DNSPARSER_check_label (const char *label)
60 60
61 if (NULL != strchr (label, '.')) 61 if (NULL != strchr (label, '.'))
62 return GNUNET_SYSERR; /* not a label! Did you mean GNUNET_DNSPARSER_check_name? */ 62 return GNUNET_SYSERR; /* not a label! Did you mean GNUNET_DNSPARSER_check_name? */
63 if (0 == strcmp (label, "@"))
64 return GNUNET_SYSERR; /* '@' is reserved for the empty label,
65 see #GNUNET_GNS_EMPTY_LABEL_AT */
66 if (IDNA_SUCCESS != idna_to_ascii_8z (label, &output, IDNA_ALLOW_UNASSIGNED)) 63 if (IDNA_SUCCESS != idna_to_ascii_8z (label, &output, IDNA_ALLOW_UNASSIGNED))
67 return GNUNET_SYSERR; 64 return GNUNET_SYSERR;
68 slen = strlen (output); 65 slen = strlen (output);