aboutsummaryrefslogtreecommitdiff
path: root/sbin/mount/mount.c
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/mount/mount.c')
-rw-r--r--sbin/mount/mount.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c
index cf603a63e394..496d71b57e4c 100644
--- a/sbin/mount/mount.c
+++ b/sbin/mount/mount.c
@@ -1,4 +1,4 @@
-/*-
+/*
* SPDX-License-Identifier: BSD-3-Clause
*
* Copyright (c) 1980, 1989, 1993, 1994
@@ -39,6 +39,7 @@
#include <errno.h>
#include <fstab.h>
+#include <mntopts.h>
#include <paths.h>
#include <pwd.h>
#include <signal.h>
@@ -51,7 +52,6 @@
#include <libxo/xo.h>
#include "extern.h"
-#include "mntopts.h"
#include "pathnames.h"
#define EXIT(a) { \
@@ -882,9 +882,9 @@ usage(void)
{
xo_error("%s\n%s\n%s\n",
-"usage: mount [-adflpruvw] [-F fstab] [-o options] [-t ufs | external_type]",
+"usage: mount [-adflpruvw] [-F fstab] [-o options] [-t [no]type[,type ...]]",
" mount [-dfpruvw] special | node",
-" mount [-dfpruvw] [-o options] [-t ufs | external_type] special node");
+" mount [-dfpruvw] [-o options] [-t [no]type[,type ...]] special node");
EXIT(EXIT_FAILURE);
}