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);
 }
 
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to