summaryrefslogtreecommitdiff
path: root/sys/nfs/nfs_socket.c
diff options
context:
space:
mode:
authorThordur I. Bjornsson <thib@cvs.openbsd.org>2009-05-15 12:07:19 +0000
committerThordur I. Bjornsson <thib@cvs.openbsd.org>2009-05-15 12:07:19 +0000
commit584fe3f9228c7783f1590aec65c887b644204067 (patch)
tree72f7468b7d0d11ebe2ae2cd1675cdf69f1d21b10 /sys/nfs/nfs_socket.c
parent9cff1d61ee899cdaed40c1e5fd9c908b27460760 (diff)
nicer (unique) wmesg for the tsleep(9) in nfs_reconnect();
Diffstat (limited to 'sys/nfs/nfs_socket.c')
-rw-r--r--sys/nfs/nfs_socket.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfs/nfs_socket.c b/sys/nfs/nfs_socket.c
index eec72e213c4..5ffc771fbbd 100644
--- a/sys/nfs/nfs_socket.c
+++ b/sys/nfs/nfs_socket.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: nfs_socket.c,v 1.78 2009/02/22 07:47:22 otto Exp $ */
+/* $OpenBSD: nfs_socket.c,v 1.79 2009/05/15 12:07:18 thib Exp $ */
/* $NetBSD: nfs_socket.c,v 1.27 1996/04/15 20:20:00 thorpej Exp $ */
/*
@@ -316,7 +316,7 @@ nfs_reconnect(rep)
while ((error = nfs_connect(nmp, rep)) != 0) {
if (error == EINTR || error == ERESTART)
return (EINTR);
- (void) tsleep((caddr_t)&lbolt, PSOCK, "nfscon", 0);
+ (void) tsleep((caddr_t)&lbolt, PSOCK, "nfsrecon", 0);
}
/*