diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-05-25 09:12:27 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-05-25 09:12:27 +0000 |
commit | dcb0b47949a88bddd07623f8ada8c7ff35456185 (patch) | |
tree | 28fdd6a5c947cb37d985fcf1861b5abd2bb68d4c /sys/nfs | |
parent | 0dbb2c8838243e47ea8f7e98efbfecd80e086323 (diff) |
nd_procnum should be unsigned; ovg@nusun.jinr.ru
Diffstat (limited to 'sys/nfs')
-rw-r--r-- | sys/nfs/nfs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfs/nfs.h b/sys/nfs/nfs.h index 7055409babe..06c01af9b99 100644 --- a/sys/nfs/nfs.h +++ b/sys/nfs/nfs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs.h,v 1.6 1996/12/17 03:46:37 dm Exp $ */ +/* $OpenBSD: nfs.h,v 1.7 1998/05/25 09:12:26 deraadt Exp $ */ /* $NetBSD: nfs.h,v 1.10.4.1 1996/05/27 11:23:56 fvdl Exp $ */ /* @@ -428,7 +428,7 @@ struct nfsrv_descript { struct mbuf *nd_nam; /* and socket addr */ struct mbuf *nd_nam2; /* return socket addr */ caddr_t nd_dpos; /* Current dissect pos */ - int nd_procnum; /* RPC # */ + unsigned int nd_procnum; /* RPC # */ int nd_stable; /* storage type */ int nd_flag; /* nd_flag */ int nd_len; /* Length of this write */ |