From: Josh Soref Date: Sun, 13 Jun 2021 21:35:00 +0000 (-0400) Subject: spelling: unsigned X-Git-Tag: 1.8.0-rc.1~25^2~119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b4efb68d968c4aa9697ae2687a7e271f485cfcee;p=thirdparty%2Fldns.git spelling: unsigned Signed-off-by: Josh Soref --- diff --git a/util.c b/util.c index fb129e12..073bcaf1 100644 --- 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);