ubase

suckless linux base utils
git clone git://git.2f30.org/ubase
Log | Files | Refs | README | LICENSE

commit a056e2aa5444c2a2d07c25f94ce17af5e3340b4c
parent 9af24d8a29518639aa03cdafbeb774f60531271b
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Sat, 15 Mar 2014 19:45:56 +0100

mount: match mountpoint error message with util-linux

Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>

Diffstat:
Mmount.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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)