From a056e2aa5444c2a2d07c25f94ce17af5e3340b4c Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Sat, 15 Mar 2014 19:45:56 +0100 Subject: [PATCH] mount: match mountpoint error message with util-linux Signed-off-by: Hiltjo Posthuma --- mount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mount.c b/mount.c index 351c283..338c69d 100644 --- a/mount.c +++ b/mount.c @@ -151,7 +151,7 @@ main(int argc, char *argv[]) } } if(!source) - eprintf("can't find %s mountpoint\n", target); + eprintf("can't find %s in /etc/fstab\n", target); mountsingle: if(mount(source, target, types, flags, data) < 0)