Re: [PATCH] crypto: Cleaning some more minor nits in prng

From: Joe Perches
Date: Thu Jul 17 2008 - 14:45:21 EST


On Thu, 2008-07-17 at 14:30 -0400, Neil Horman wrote:
> diff --git a/crypto/prng.c b/crypto/prng.c
> index 9e2d277..0b1831e 100644
> {
> int ret;
> @@ -313,6 +313,9 @@ int reset_prng_context(struct prng_context *ctx,
>
> prng_key = (key != NULL) ? key : (unsigned char *)DEFAULT_PRNG_KEY;
>
> + if (!key)
> + klen = DEFAULT_PRNG_KSZ;
> +
> if (V)
> memcpy(ctx->V, V, DEFAULT_BLK_SZ);
> else

Perhaps more readable as:

if (key)
prng_key = key;
else {
prng_key = DEFAULT_PRNG_KEY;
klen = DEFAULT_PRNG_KSZ;
}


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/