Module Name:    src
Committed By:   drochner
Date:           Tue Nov 29 13:16:27 UTC 2011

Modified Files:
        src/sys/lib/libkern: arc4random.c

Log Message:
make "rs" static -- this name is too unspecific for the global namespace


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/sys/lib/libkern/arc4random.c

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

Modified files:

Index: src/sys/lib/libkern/arc4random.c
diff -u src/sys/lib/libkern/arc4random.c:1.28 src/sys/lib/libkern/arc4random.c:1.29
--- src/sys/lib/libkern/arc4random.c:1.28	Tue Nov 29 03:50:32 2011
+++ src/sys/lib/libkern/arc4random.c	Tue Nov 29 13:16:27 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: arc4random.c,v 1.28 2011/11/29 03:50:32 tls Exp $	*/
+/*	$NetBSD: arc4random.c,v 1.29 2011/11/29 13:16:27 drochner Exp $	*/
 
 /*-
  * Copyright (c) 2002, 2011 The NetBSD Foundation, Inc.
@@ -72,7 +72,7 @@
 #include <sys/rnd.h>
 #include <dev/rnd_private.h>
 
-rndsink_t	rs;
+static rndsink_t	rs;
 
 #endif
 

Reply via email to