From: kstailey Date: Wed, 15 Jan 1997 22:33:53 +0000 (+0000) Subject: moved init of ret in randomioctl() to better location X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=0b41b9d946f2abdad69ccb5a02932e392dd99371;p=openbsd moved init of ret in randomioctl() to better location --- diff --git a/sys/dev/rnd.c b/sys/dev/rnd.c index 2e446924dc5..7d915b6fa57 100644 --- a/sys/dev/rnd.c +++ b/sys/dev/rnd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rnd.c,v 1.15 1997/01/15 02:03:53 kstailey Exp $ */ +/* $OpenBSD: rnd.c,v 1.16 1997/01/15 22:33:53 kstailey Exp $ */ /* * random.c -- A strong random number generator @@ -820,7 +820,7 @@ randomioctl(dev, cmd, data, flag, p) int flag; struct proc *p; { - int ret = 0; + int ret; u_int cnt; switch (cmd) { @@ -835,6 +835,7 @@ randomioctl(dev, cmd, data, flag, p) random_state.entropy_count += cnt; if (random_state.entropy_count > POOLBITS) random_state.entropy_count = POOLBITS; + ret = 0; break; case RNDZAPENTCNT: if (suser(p->p_ucred, &p->p_acflag) != 0)