]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix compile error in dnscrypt.
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Tue, 3 Dec 2019 15:44:24 +0000 (16:44 +0100)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Tue, 3 Dec 2019 15:44:24 +0000 (16:44 +0100)
dnscrypt/dnscrypt.c
doc/Changelog

index 6d187a748bbcfc2b2de73cc5507f6b3a63df0d17..843735018b23f1b4a9e1c52f8e275ba61a9da4b8 100644 (file)
@@ -722,7 +722,7 @@ dnsc_load_local_data(struct dnsc_env* dnscenv, struct config_file *cfg)
        if((unsigned)strlen(dnscenv->provider_name) >= (unsigned)0xffff0000) {
                /* guard against integer overflow in rrlen calculation */
                verbose(VERB_OPS, "cert #%" PRIu32 " is too long", serial);
-               continue
+               continue;
        }
         rrlen = strlen(dnscenv->provider_name) +
                          strlen(ttl_class_type) +
index 099db0484259ad45dbd9b15cf69fcab4e4b76fea..6b646b3f137220ac20f12ff610cda7a2da1efda7 100644 (file)
@@ -28,6 +28,7 @@
          reported by X41 D-Sec.
        - Fix Client NONCE Generation used for Server NONCE,
          reported by X41 D-Sec.
+       - Fix compile error in dnscrypt.
 
 2 December 2019: Wouter
        - Merge pull request #122 from he32: In tcp_callback_writer(),