Module Name:    src
Committed By:   christos
Date:           Wed Dec 23 18:10:39 UTC 2015

Modified Files:
        src/tests/fs/nfs/nfsservice: nfsd.c

Log Message:
ggr, make debug static. I hate that the copy of this and the original
source has diverged so much!


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/tests/fs/nfs/nfsservice/nfsd.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tests/fs/nfs/nfsservice/nfsd.c
diff -u src/tests/fs/nfs/nfsservice/nfsd.c:1.5 src/tests/fs/nfs/nfsservice/nfsd.c:1.6
--- src/tests/fs/nfs/nfsservice/nfsd.c:1.5	Fri Aug 21 10:19:10 2015
+++ src/tests/fs/nfs/nfsservice/nfsd.c	Wed Dec 23 13:10:39 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: nfsd.c,v 1.5 2015/08/21 14:19:10 christos Exp $	*/
+/*	$NetBSD: nfsd.c,v 1.6 2015/12/23 18:10:39 christos Exp $	*/
 
 /*
  * Copyright (c) 1989, 1993, 1994
@@ -42,7 +42,7 @@ __COPYRIGHT("@(#) Copyright (c) 1989, 19
 #if 0
 static char sccsid[] = "@(#)nfsd.c	8.9 (Berkeley) 3/29/95";
 #else
-__RCSID("$NetBSD: nfsd.c,v 1.5 2015/08/21 14:19:10 christos Exp $");
+__RCSID("$NetBSD: nfsd.c,v 1.6 2015/12/23 18:10:39 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -89,9 +89,9 @@ do {									\
     fprintf(stderr,(s), ## args); 					\
     fprintf(stderr, "\n");						\
 } while (/*CONSTCOND*/0)
-int	debug = 1;
+static int	debug = 1;
 #else
-int	debug = 0;
+static int	debug = 0;
 #endif
 
 void	nonfs(int);

Reply via email to