From: Niels Möller Date: Sun, 21 Apr 2013 18:17:15 +0000 (+0200) Subject: Fixed comment typo. X-Git-Tag: nettle_2.7_release_20130424~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b58a69c84574113b28ae5657514dc41580848626;p=thirdparty%2Fnettle.git Fixed comment typo. --- diff --git a/cast128.c b/cast128.c index 5e53bd94..512c55d2 100644 --- a/cast128.c +++ b/cast128.c @@ -179,7 +179,7 @@ cast128_set_key(struct cast128_ctx *ctx, if ((i*4+3) < keybytes) x[i] |= (uint32_t)rawkey[i*4+3]; } /* FIXME: For the shorter key sizes, the last 4 subkeys are not - used, and need not be generatedd, nor stored. */ + used, and need not be generated, nor stored. */ /* Generate 32 subkeys, four at a time */ for (i = 0; i < 32; i+=4) { switch (i & 4) {