From: Hannes Reinecke Date: Wed, 12 May 2010 06:01:18 +0000 (+0200) Subject: libmultipath: Make path state message unique X-Git-Tag: upstream/0.5.0~106^2~19 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4153434e190c31bdd654c946ff5fc4b23c76479a;p=platform%2Fupstream%2Fmultipath-tools.git 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 --- 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;