svn commit: r329921 - head/lib/libc/gen

Conrad Meyer cem at FreeBSD.org
Sat Feb 24 19:40:23 UTC 2018


Author: cem
Date: Sat Feb 24 19:40:23 2018
New Revision: 329921
URL: https://svnweb.freebsd.org/changeset/base/329921

Log:
  libc: Remove unused definition
  
  RANDOMDEV isn't used after r306636.  Remove the unneeded definition.
  
  No functional change.
  
  Sponsored by:	Dell EMC Isilon

Modified:
  head/lib/libc/gen/arc4random.c

Modified: head/lib/libc/gen/arc4random.c
==============================================================================
--- head/lib/libc/gen/arc4random.c	Sat Feb 24 19:25:09 2018	(r329920)
+++ head/lib/libc/gen/arc4random.c	Sat Feb 24 19:40:23 2018	(r329921)
@@ -59,7 +59,6 @@ struct arc4_stream {
 
 static pthread_mutex_t	arc4random_mtx = PTHREAD_MUTEX_INITIALIZER;
 
-#define	RANDOMDEV	"/dev/random"
 #define	KEYSIZE		128
 #define	_ARC4_LOCK()						\
 	do {							\


More information about the svn-src-head mailing list