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

Rick Macklem rmacklem at FreeBSD.org
Fri May 22 19:05:49 UTC 2009


Author: rmacklem
Date: Fri May 22 19:05:48 2009
New Revision: 192596
URL: http://svn.freebsd.org/changeset/base/192596

Log:
  Change the printf of r192595 to identify the function,
  as requested 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 18:46:28 2009	(r192595)
+++ head/sys/fs/nfsserver/nfs_nfsdstate.c	Fri May 22 19:05:48 2009	(r192596)
@@ -3705,7 +3705,7 @@ nfsrv_nextclientindex(void)
 	if (client_index != 0)
 		return (client_index);
 
-	printf("out of clientids\n");
+	printf("%s: out of clientids\n", __func__);
 	return (client_index);
 }
 


More information about the svn-src-all mailing list