aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/util/dnsparser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/dnsparser.c b/src/util/dnsparser.c
index 6fb6d657f..24f1b18cf 100644
--- a/src/util/dnsparser.c
+++ b/src/util/dnsparser.c
@@ -959,7 +959,7 @@ GNUNET_DNSPARSER_builder_add_name (char *dst,
959 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 959 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
960 "Invalid DNS name `%s': label with %u characters encountered\n", 960 "Invalid DNS name `%s': label with %u characters encountered\n",
961 name, 961 name,
962 len); 962 (unsigned int) len);
963 goto fail; /* label too long or empty */ 963 goto fail; /* label too long or empty */
964 } 964 }
965 dst[pos++] = (char) (uint8_t) len; 965 dst[pos++] = (char) (uint8_t) len;