]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
happyflow for all signle svcparams (now without debug prints)
authorTom Carpay <tom@nlnetlabs.nl>
Thu, 20 May 2021 11:39:24 +0000 (13:39 +0200)
committerTom Carpay <tom@nlnetlabs.nl>
Thu, 20 May 2021 11:39:24 +0000 (13:39 +0200)
sldns/str2wire.c
sldns/wire2str.c

index 665c6da1d27a3e7da324e379514fff9cfb729e5c..a35dfc83638c901d6ddaa0a2a546df4502390f58 100644 (file)
@@ -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);
index 21f6195ce20403941d66eaf4f2d6b4ae2dd34d69..7d1143c6d19921c4bfd5fd1b703ace0dc5323b09 100644 (file)
@@ -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;