From 825be22f79ef1643bdb79213dff47b85740cb826 Mon Sep 17 00:00:00 2001 From: Richard Sharpe Date: Thu, 5 Aug 2010 13:57:32 +0000 Subject: [PATCH] Improve a debugging statement so that it shows the SAS address allocated. git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@1936 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scst_local/scst_local.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scst_local/scst_local.c b/scst_local/scst_local.c index 3352f4111..635cc4e59 100644 --- a/scst_local/scst_local.c +++ b/scst_local/scst_local.c @@ -702,7 +702,9 @@ static int scst_local_get_initiator_port_transport_id( *transport_id = tr_id; - TRACE_DBG("Created tid '%08lX'", (unsigned long)&tr_id[4]); + TRACE_DBG("Created tid '%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X'", + tr_id[4], tr_id[5], tr_id[6], tr_id[7], + tr_id[8], tr_id[9], tr_id[10], tr_id[11]); out: TRACE_EXIT_RES(res);