Module Name: src
Committed By: pooka
Date: Fri Apr 25 15:54:12 UTC 2014
Modified Files:
src/sys/netsmb: smb_trantcp.c
Log Message:
whoops, remove testing printf
To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/sys/netsmb/smb_trantcp.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/netsmb/smb_trantcp.c
diff -u src/sys/netsmb/smb_trantcp.c:1.45 src/sys/netsmb/smb_trantcp.c:1.46
--- src/sys/netsmb/smb_trantcp.c:1.45 Fri Apr 25 15:52:45 2014
+++ src/sys/netsmb/smb_trantcp.c Fri Apr 25 15:54:12 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: smb_trantcp.c,v 1.45 2014/04/25 15:52:45 pooka Exp $ */
+/* $NetBSD: smb_trantcp.c,v 1.46 2014/04/25 15:54:12 pooka Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -61,7 +61,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: smb_trantcp.c,v 1.45 2014/04/25 15:52:45 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: smb_trantcp.c,v 1.46 2014/04/25 15:54:12 pooka Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -244,7 +244,6 @@ nbssn_rq_request(struct nbpcb *nbp, stru
error = nbssn_recv(nbp, &m0, &rplen, &rpcode, true, l);
if (error) {
if (error == EWOULDBLOCK) { /* Timeout */
- printf("would blockn\n");
NBDEBUG(("initial request timeout\n"));
return ETIMEDOUT;
}