From e7e1a1b0ab05454ed63e09ccf29d24ed187d7220 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Thu, 21 Jul 2016 04:04:34 +0200 Subject: [PATCH] block: print mountpoint if already mounted Signed-off-by: Daniel Golle --- block.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/block.c b/block.c index 58487a1..e674521 100644 --- a/block.c +++ b/block.c @@ -727,6 +727,7 @@ static int mount_device(struct blkid_struct_probe *pr, int hotplug) { struct mount *m; char *device; + char *mp; if (!pr) return -1; @@ -746,8 +747,9 @@ static int mount_device(struct blkid_struct_probe *pr, int hotplug) if (hotplug && !auto_mount) return -1; - if (find_mount_point(pr->dev)) { - ULOG_ERR("%s is already mounted\n", pr->dev); + mp = find_mount_point(pr->dev); + if (mp) { + ULOG_ERR("%s is already mounted on %s\n", pr->dev, mp); return -1; } -- 2.11.0