Module Name: src
Committed By: mlelstv
Date: Fri Jun 3 06:53:40 UTC 2016
Modified Files:
src/sys/dev/iscsi: iscsi_send.c
Log Message:
fix debug message
To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/dev/iscsi/iscsi_send.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/dev/iscsi/iscsi_send.c
diff -u src/sys/dev/iscsi/iscsi_send.c:1.19 src/sys/dev/iscsi/iscsi_send.c:1.20
--- src/sys/dev/iscsi/iscsi_send.c:1.19 Wed Jun 1 05:31:59 2016
+++ src/sys/dev/iscsi/iscsi_send.c Fri Jun 3 06:53:40 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: iscsi_send.c,v 1.19 2016/06/01 05:31:59 mlelstv Exp $ */
+/* $NetBSD: iscsi_send.c,v 1.20 2016/06/03 06:53:40 mlelstv Exp $ */
/*-
* Copyright (c) 2004,2005,2006,2011 The NetBSD Foundation, Inc.
@@ -260,7 +260,7 @@ reassign_tasks(connection_t *oldconn)
/* update CmdSN */
DEBC(conn, 1, ("Resend Updating CmdSN - old %d, new %d\n",
- ccb->CmdSN, sess->CmdSN));
+ ccb->CmdSN, sn));
ccb->CmdSN = sn;
pdu->pdu.p.command.CmdSN = htonl(ccb->CmdSN);
}