From ed41a7cceebb06efff1c7ed37149b5aae89d97f1 Mon Sep 17 00:00:00 2001 From: Rick Macklem Date: Fri, 22 May 2009 19:05:48 +0000 Subject: [PATCH] Change the printf of r192595 to identify the function, as requested by Sam. Approved by: kib (mentor) --- sys/fs/nfsserver/nfs_nfsdstate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/fs/nfsserver/nfs_nfsdstate.c b/sys/fs/nfsserver/nfs_nfsdstate.c index fc947e31ac7..27fe446dc21 100644 --- a/sys/fs/nfsserver/nfs_nfsdstate.c +++ b/sys/fs/nfsserver/nfs_nfsdstate.c @@ -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); }