artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7e3b427
)
prevent -Wall warning:
author
kstailey
<kstailey@openbsd.org>
Wed, 15 Jan 1997 03:52:27 +0000
(
03:52
+0000)
committer
kstailey
<kstailey@openbsd.org>
Wed, 15 Jan 1997 03:52:27 +0000
(
03:52
+0000)
nfs_vfsops.c:456: warning: `adjsock' might be used uninitialized in this function
sys/nfs/nfs_vfsops.c
patch
|
blob
|
history
diff --git
a/sys/nfs/nfs_vfsops.c
b/sys/nfs/nfs_vfsops.c
index
9a1a94f
..
0e00077
100644
(file)
--- a/
sys/nfs/nfs_vfsops.c
+++ b/
sys/nfs/nfs_vfsops.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: nfs_vfsops.c,v 1.1
5 1996/12/24 20:14:32 dm Exp $
*/
+/* $OpenBSD: nfs_vfsops.c,v 1.1
6 1997/01/15 03:52:27 kstailey Exp $
*/
/* $NetBSD: nfs_vfsops.c,v 1.46.4.1 1996/05/25 22:40:35 fvdl Exp $ */
/*
@@
-453,7
+453,7
@@
nfs_decode_args(nmp, argp)
struct nfs_args *argp;
{
int s;
- int adjsock;
+ int adjsock
= 0
;
int maxio;
s = splsoftnet();