From: Tom Carpay Date: Thu, 20 May 2021 11:39:24 +0000 (+0200) Subject: happyflow for all signle svcparams (now without debug prints) X-Git-Tag: release-1.13.2rc1~42^2~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eca19fe1d186353ad6a21ee9998f735c76562863;p=thirdparty%2Funbound.git happyflow for all signle svcparams (now without debug prints) --- diff --git a/sldns/str2wire.c b/sldns/str2wire.c index 665c6da1d..a35dfc836 100644 --- a/sldns/str2wire.c +++ b/sldns/str2wire.c @@ -1331,10 +1331,6 @@ sldns_str2wire_svcparam_key_value(const char *key, size_t key_len, { uint16_t svcparamkey = sldns_str2wire_svcparam_key_lookup(key, key_len); - - fprintf(stderr, "key: %s\n", key); - fprintf(stderr, "val: %s\n", val); - switch (svcparamkey) { case SVCB_KEY_PORT: return sldns_str2wire_svcparam_port(val, rd, rd_len); diff --git a/sldns/wire2str.c b/sldns/wire2str.c index 21f6195ce..7d1143c6d 100644 --- a/sldns/wire2str.c +++ b/sldns/wire2str.c @@ -1101,8 +1101,6 @@ int sldns_wire2str_svcparam_ech2str(char** s, /* b64_ntop_calculate size includes null at the end */ size = sldns_b64_ntop_calculate_size(data_len); - fprintf(stderr, "size %d\n", size); - // @TODO store return value? sldns_b64_ntop(data, data_len, *s, *slen); (*s) += size;