]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
spelling: unsigned
authorJosh Soref <jsoref@users.noreply.github.com>
Sun, 13 Jun 2021 21:35:00 +0000 (17:35 -0400)
committerWillem Toorop <willem@nlnetlabs.nl>
Mon, 14 Jun 2021 09:22:31 +0000 (11:22 +0200)
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
util.c

diff --git a/util.c b/util.c
index fb129e1284f3a1e8d5c96e3dd143ad35827f6358..073bcaf14ded95bdbc8fa13ca4543daab24e14e2 100644 (file)
--- a/util.c
+++ b/util.c
@@ -377,7 +377,7 @@ ldns_init_random(FILE *fd, unsigned int size)
                RAND_seed(seed, (int) size);
 #else
                /* Seed the standard prng, only uses the first
-                * unsigned sizeof(unsiged int) bytes found in the entropy pool
+                * unsigned sizeof(unsigned int) bytes found in the entropy pool
                 */
                memcpy(&seed_i, seed, sizeof(seed_i));
                srandom(seed_i);