summaryrefslogtreecommitdiff
path: root/sbin/mount_reiserfs/mount_reiserfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/mount_reiserfs/mount_reiserfs.c')
-rw-r--r--sbin/mount_reiserfs/mount_reiserfs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/mount_reiserfs/mount_reiserfs.c b/sbin/mount_reiserfs/mount_reiserfs.c
index 5fccfbe9950c..bf625267b9ba 100644
--- a/sbin/mount_reiserfs/mount_reiserfs.c
+++ b/sbin/mount_reiserfs/mount_reiserfs.c
@@ -78,7 +78,8 @@ main(int argc, char *argv[])
* Resolve the mountpoint with realpath(3) and remove unnecessary
* slashes from the devicename if there are any.
*/
- (void)checkpath(dir, mntpath);
+ if (checkpath(dir, mntpath) != 0)
+ err(EX_USAGE, "%s", mntpath);
(void)rmslashes(dev, dev);
/* Read-only support for now */