mirror of git://git.suckless.org/ubase
mount: match mountpoint error message with util-linux
Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>
This commit is contained in:
parent
9af24d8a29
commit
a056e2aa54
2
mount.c
2
mount.c
|
@ -151,7 +151,7 @@ main(int argc, char *argv[])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(!source)
|
if(!source)
|
||||||
eprintf("can't find %s mountpoint\n", target);
|
eprintf("can't find %s in /etc/fstab\n", target);
|
||||||
|
|
||||||
mountsingle:
|
mountsingle:
|
||||||
if(mount(source, target, types, flags, data) < 0)
|
if(mount(source, target, types, flags, data) < 0)
|
||||||
|
|
Loading…
Reference in New Issue