From 4153434e190c31bdd654c946ff5fc4b23c76479a Mon Sep 17 00:00:00 2001 From: Hannes Reinecke Date: Wed, 12 May 2010 08:01:18 +0200 Subject: [PATCH] libmultipath: Make path state message unique There are two identical messages 'state =', so we should modify them to have them better identified. Signed-off-by: Hannes Reinecke --- libmultipath/discovery.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmultipath/discovery.c b/libmultipath/discovery.c index 0716c66..1de5353 100644 --- a/libmultipath/discovery.c +++ b/libmultipath/discovery.c @@ -699,7 +699,7 @@ path_offline (struct path * pp) if (sysfs_get_state(parent, buff, SCSI_STATE_SIZE)) return PATH_WILD; - condlog(3, "%s: state = %s", pp->dev, buff); + condlog(3, "%s: path state = %s", pp->dev, buff); if (!strncmp(buff, "offline", 7)) { pp->offline = 1; -- 2.7.4