From a59bb9c313dfcd34685a09710fd2e7719a200373 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Wed, 3 Nov 2010 01:55:53 +0000 Subject: [PATCH] [fcp] Avoid quoting exchange ID before exchange is created Signed-off-by: Michael Brown --- src/net/fcp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/net/fcp.c b/src/net/fcp.c index ddb6ccc85..e413e0736 100644 --- a/src/net/fcp.c +++ b/src/net/fcp.c @@ -778,8 +778,8 @@ static int fcpdev_scsi_command ( struct fcp_device *fcpdev, &fcpdev->ulp->peer->port_id, FC_TYPE_FCP ) ) < 0 ) { rc = xchg_id; - DBGC ( fcpdev, "FCP %p xchg %04x could not create exchange: " - "%s\n", fcpdev, fcpcmd->xchg_id, strerror ( rc ) ); + DBGC ( fcpdev, "FCP %p could not create exchange: %s\n", + fcpdev, strerror ( rc ) ); goto err_xchg_originate; } fcpcmd->xchg_id = xchg_id;