aboutsummaryrefslogtreecommitdiff
path: root/sbin/mount
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-03-20 08:47:53 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-03-20 08:47:53 +0000
commit7e6cd705f344de2f9f08475a0fa2ef9191f88dd0 (patch)
tree3ce9d5458d0d6e880d50e1e1f1e1ed7521a35ad1 /sbin/mount
parent172a0f0d163415e05ea07968167b11145975a6cb (diff)
This commit was manufactured by cvs2svn to create tagrelease/4.0.0_cvs
'RELENG_4_0_0_RELEASE'. This commit was manufactured to restore the state of the 4.0-RELEASE image. Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs.
Diffstat (limited to 'sbin/mount')
-rw-r--r--sbin/mount/Makefile2
-rw-r--r--sbin/mount/extern.h2
-rw-r--r--sbin/mount/getmntopts.32
-rw-r--r--sbin/mount/getmntopts.c2
-rw-r--r--sbin/mount/mntopts.h2
-rw-r--r--sbin/mount/mount.82
-rw-r--r--sbin/mount/mount.c2
-rw-r--r--sbin/mount/mount_ufs.c2
-rw-r--r--sbin/mount/vfslist.c2
9 files changed, 9 insertions, 9 deletions
diff --git a/sbin/mount/Makefile b/sbin/mount/Makefile
index 96c996db24fe..e591b47fc8b1 100644
--- a/sbin/mount/Makefile
+++ b/sbin/mount/Makefile
@@ -1,5 +1,5 @@
# @(#)Makefile 8.6 (Berkeley) 5/8/95
-# $FreeBSD$
+# $FreeBSD: src/sbin/mount/Makefile,v 1.9 1999/08/28 00:13:24 peter Exp $
PROG= mount
SRCS= mount.c mount_ufs.c getmntopts.c vfslist.c
diff --git a/sbin/mount/extern.h b/sbin/mount/extern.h
index bc11a037ecfd..8bdc545263e6 100644
--- a/sbin/mount/extern.h
+++ b/sbin/mount/extern.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sbin/mount/extern.h,v 1.3 1999/08/28 00:13:24 peter Exp $
*/
/* vfslist.c */
diff --git a/sbin/mount/getmntopts.3 b/sbin/mount/getmntopts.3
index 84ad24f598a7..6868ad7c7cf5 100644
--- a/sbin/mount/getmntopts.3
+++ b/sbin/mount/getmntopts.3
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)getmntopts.3 8.3 (Berkeley) 3/30/95
-.\" $FreeBSD$
+.\" $FreeBSD: src/sbin/mount/getmntopts.3,v 1.6 1999/08/28 00:13:25 peter Exp $
.\"
.Dd March 30, 1995
.Dt GETMNTOPTS 3
diff --git a/sbin/mount/getmntopts.c b/sbin/mount/getmntopts.c
index ffc18bfac219..c5da85de57d3 100644
--- a/sbin/mount/getmntopts.c
+++ b/sbin/mount/getmntopts.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)getmntopts.c 8.3 (Berkeley) 3/29/95";
#else
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sbin/mount/getmntopts.c,v 1.9 1999/10/09 11:54:06 phk Exp $";
#endif
#endif /* not lint */
diff --git a/sbin/mount/mntopts.h b/sbin/mount/mntopts.h
index 73c3c15a838f..60540f4dd401 100644
--- a/sbin/mount/mntopts.h
+++ b/sbin/mount/mntopts.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)mntopts.h 8.7 (Berkeley) 3/29/95
- * $FreeBSD$
+ * $FreeBSD: src/sbin/mount/mntopts.h,v 1.16 1999/10/09 11:54:07 phk Exp $
*/
struct mntopt {
diff --git a/sbin/mount/mount.8 b/sbin/mount/mount.8
index 9ac9e0c2c9fe..0ad8e0a82a1a 100644
--- a/sbin/mount/mount.8
+++ b/sbin/mount/mount.8
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)mount.8 8.8 (Berkeley) 6/16/94
-.\" $FreeBSD$
+.\" $FreeBSD: src/sbin/mount/mount.8,v 1.31 2000/03/01 11:27:12 sheldonh Exp $
.\"
.Dd June 16, 1994
.Dt MOUNT 8
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c
index 65bcb5d1f0c6..808817f87f41 100644
--- a/sbin/mount/mount.c
+++ b/sbin/mount/mount.c
@@ -42,7 +42,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)mount.c 8.25 (Berkeley) 5/8/95";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sbin/mount/mount.c,v 1.39 2000/01/15 14:28:13 green Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/sbin/mount/mount_ufs.c b/sbin/mount/mount_ufs.c
index 3c0b6fcb711f..34fb80b9163e 100644
--- a/sbin/mount/mount_ufs.c
+++ b/sbin/mount/mount_ufs.c
@@ -42,7 +42,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)mount_ufs.c 8.4 (Berkeley) 4/26/95";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sbin/mount/mount_ufs.c,v 1.16 1999/08/28 00:13:27 peter Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/sbin/mount/vfslist.c b/sbin/mount/vfslist.c
index d8201882eb33..4af5ab3c78f8 100644
--- a/sbin/mount/vfslist.c
+++ b/sbin/mount/vfslist.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)vfslist.c 8.1 (Berkeley) 5/8/95";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sbin/mount/vfslist.c,v 1.4 1999/08/28 00:13:27 peter Exp $";
#endif /* not lint */
#include <err.h>