svn commit: r192591 - head/sys/fs/nfsserver

Rick Macklem rmacklem at FreeBSD.org
Fri May 22 18:10:40 UTC 2009


Author: rmacklem
Date: Fri May 22 18:10:39 2009
New Revision: 192591
URL: http://svn.freebsd.org/changeset/base/192591

Log:
  Modified the printf message of r192590 to remove the
  possible DOS attack, as suggested by Sam.
  
  Approved by:	kib (mentor)

Modified:
  head/sys/fs/nfsserver/nfs_nfsdstate.c

Modified: head/sys/fs/nfsserver/nfs_nfsdstate.c
==============================================================================
--- head/sys/fs/nfsserver/nfs_nfsdstate.c	Fri May 22 17:54:02 2009	(r192590)
+++ head/sys/fs/nfsserver/nfs_nfsdstate.c	Fri May 22 18:10:39 2009	(r192591)
@@ -3705,7 +3705,7 @@ nfsrv_nextclientindex(void)
 	if (client_index != 0)
 		return (client_index);
 
-	printf("out of clientids, possible DOS attack\n");
+	printf("out of clientids\n");
 	return (client_index);
 }
 


More information about the svn-src-head mailing list