diff options
-rw-r--r-- | sbin/mount_ext2fs/mount_ext2fs.c | 4 | ||||
-rw-r--r-- | sbin/mount_ffs/mount_ffs.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sbin/mount_ext2fs/mount_ext2fs.c b/sbin/mount_ext2fs/mount_ext2fs.c index 652175a5744..9e77a3edb85 100644 --- a/sbin/mount_ext2fs/mount_ext2fs.c +++ b/sbin/mount_ext2fs/mount_ext2fs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount_ext2fs.c,v 1.17 2015/01/16 06:39:59 deraadt Exp $ */ +/* $OpenBSD: mount_ext2fs.c,v 1.18 2015/12/08 15:56:42 tedu Exp $ */ /* $NetBSD: mount_ffs.c,v 1.3 1996/04/13 01:31:19 jtc Exp $ */ /*- @@ -75,7 +75,7 @@ main(int argc, char *argv[]) if (argc != 2) ext2fs_usage(); - args.fspec = argv[0]; /* The name of the device file. */ + args.fspec = argv[0]; /* The name of the device file. */ if (realpath(argv[1], fs_name) == NULL) /* The mount point. */ err(1, "realpath %s", argv[1]); diff --git a/sbin/mount_ffs/mount_ffs.c b/sbin/mount_ffs/mount_ffs.c index ddea908fc0b..f2c5ee2568a 100644 --- a/sbin/mount_ffs/mount_ffs.c +++ b/sbin/mount_ffs/mount_ffs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount_ffs.c,v 1.21 2015/01/16 06:39:59 deraadt Exp $ */ +/* $OpenBSD: mount_ffs.c,v 1.22 2015/12/08 15:56:42 tedu Exp $ */ /* $NetBSD: mount_ffs.c,v 1.3 1996/04/13 01:31:19 jtc Exp $ */ /*- @@ -80,7 +80,7 @@ main(int argc, char *argv[]) if (argc != 2) ffs_usage(); - args.fspec = argv[0]; /* The name of the device file. */ + args.fspec = argv[0]; /* The name of the device file. */ if (realpath(argv[1], fs_name) == NULL) /* The mount point. */ err(1, "realpath %s", argv[1]); |