aboutsummaryrefslogtreecommitdiff
path: root/sbin/mount
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1999-08-28 00:22:10 +0000
committerPeter Wemm <peter@FreeBSD.org>1999-08-28 00:22:10 +0000
commit7f3dea244c40159a41ab22da77a434d7c5b5e85a (patch)
tree0cf37f427c704496510156e28ccd8cd233f9d688 /sbin/mount
parente6c8b48d908090e196f36bb181e0f8b5c7c80f1a (diff)
downloadsrc-7f3dea244c40159a41ab22da77a434d7c5b5e85a.tar.gz
src-7f3dea244c40159a41ab22da77a434d7c5b5e85a.zip
$Id$ -> $FreeBSD$
Notes
Notes: svn path=/head/; revision=50476
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 f4e95245514f..96c996db24fe 100644
--- a/sbin/mount/Makefile
+++ b/sbin/mount/Makefile
@@ -1,5 +1,5 @@
# @(#)Makefile 8.6 (Berkeley) 5/8/95
-# $Id: Makefile,v 1.7 1998/03/08 14:50:00 msmith Exp $
+# $FreeBSD$
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 71dde6c9c426..bc11a037ecfd 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.
*
- * $Id: extern.h,v 1.1 1997/08/24 21:28:38 steve Exp $
+ * $FreeBSD$
*/
/* vfslist.c */
diff --git a/sbin/mount/getmntopts.3 b/sbin/mount/getmntopts.3
index cc4381b9ae74..84ad24f598a7 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
-.\" $Id$
+.\" $FreeBSD$
.\"
.Dd March 30, 1995
.Dt GETMNTOPTS 3
diff --git a/sbin/mount/getmntopts.c b/sbin/mount/getmntopts.c
index 25b8d090c128..c80c26281fb6 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[] =
- "$Id: getmntopts.c,v 1.6 1997/08/24 21:02:47 steve Exp $";
+ "$FreeBSD$";
#endif
#endif /* not lint */
diff --git a/sbin/mount/mntopts.h b/sbin/mount/mntopts.h
index 1be391d585c4..dd98298dba62 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
- * $Id: mntopts.h,v 1.13 1998/04/08 18:31:17 wosch Exp $
+ * $FreeBSD$
*/
struct mntopt {
diff --git a/sbin/mount/mount.8 b/sbin/mount/mount.8
index 9f729c0067a7..e882f88a7bca 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
-.\" $Id: mount.8,v 1.26 1999/05/07 05:22:07 jkoshy Exp $
+.\" $FreeBSD$
.\"
.Dd June 16, 1994
.Dt MOUNT 8
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c
index 96be4452272c..0cfe7421bccc 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[] =
- "$Id: mount.c,v 1.30 1999/05/07 05:22:08 jkoshy Exp $";
+ "$FreeBSD$";
#endif /* not lint */
#include <sys/param.h>
diff --git a/sbin/mount/mount_ufs.c b/sbin/mount/mount_ufs.c
index c6abfee22b70..3c0b6fcb711f 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[] =
- "$Id: mount_ufs.c,v 1.14 1998/07/06 07:12:38 charnier Exp $";
+ "$FreeBSD$";
#endif /* not lint */
#include <sys/param.h>
diff --git a/sbin/mount/vfslist.c b/sbin/mount/vfslist.c
index 871de264f76a..d8201882eb33 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[] =
- "$Id$";
+ "$FreeBSD$";
#endif /* not lint */
#include <err.h>