From: deraadt Date: Mon, 28 Apr 1997 00:40:14 +0000 (+0000) Subject: indent X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=86ba1b33086bf03f04b4ab99f4eb83852460a198;p=openbsd indent --- diff --git a/sys/nfs/nfs_subs.c b/sys/nfs/nfs_subs.c index be6dfd1dd81..e39e5657ed8 100644 --- a/sys/nfs/nfs_subs.c +++ b/sys/nfs/nfs_subs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_subs.c,v 1.18 1997/04/28 00:37:06 angelos Exp $ */ +/* $OpenBSD: nfs_subs.c,v 1.19 1997/04/28 00:40:14 deraadt Exp $ */ /* $NetBSD: nfs_subs.c,v 1.27.4.3 1996/07/08 20:34:24 jtc Exp $ */ /* @@ -644,17 +644,13 @@ nfsm_rpchead(cr, nmflag, procid, auth_type, auth_len, auth_str, verf_len, /* Get a new (non-zero) xid */ - if ((nfs_xid == 0) && (nfs_xid_touched == 0)) - { - nfs_xid = arc4random(); - nfs_xid_touched = 1; - } - else - { - while ((*xidp = arc4random() % 256) == 0) - ; - - nfs_xid += *xidp; + if ((nfs_xid == 0) && (nfs_xid_touched == 0)) { + nfs_xid = arc4random(); + nfs_xid_touched = 1; + } else { + while ((*xidp = arc4random() % 256) == 0) + ; + nfs_xid += *xidp; } *tl++ = *xidp = txdr_unsigned(nfs_xid);