diff options
author | 1997-01-23 18:59:31 +0000 | |
---|---|---|
committer | 1997-01-23 18:59:31 +0000 | |
commit | 144cca96ddb6d62baa63034ae5fc8fe55c851008 (patch) | |
tree | 10eea95931cbae74733c33057d649bd91b57ee86 | |
parent | sh-based TEST suite and man page clarifications from FreeBSD (diff) | |
download | wireguard-openbsd-144cca96ddb6d62baa63034ae5fc8fe55c851008.tar.xz wireguard-openbsd-144cca96ddb6d62baa63034ae5fc8fe55c851008.zip |
correct fs_passno comment; drochner@zelux6.zel.kfa-juelich.de
-rw-r--r-- | include/fstab.h | 2 | ||||
-rw-r--r-- | share/man/man5/fstab.5 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/fstab.h b/include/fstab.h index 4043d7abf22..6b3c0809c2b 100644 --- a/include/fstab.h +++ b/include/fstab.h @@ -65,7 +65,7 @@ struct fstab { char *fs_mntops; /* Mount options ala -o */ char *fs_type; /* FSTAB_* from fs_mntops */ int fs_freq; /* dump frequency, in days */ - int fs_passno; /* pass number on parallel dump */ + int fs_passno; /* pass number on parallel fsck */ }; #include <sys/cdefs.h> diff --git a/share/man/man5/fstab.5 b/share/man/man5/fstab.5 index 60f5ab48bc9..db7a569a204 100644 --- a/share/man/man5/fstab.5 +++ b/share/man/man5/fstab.5 @@ -219,7 +219,7 @@ struct fstab { char *fs_mntops; /* comma separated mount options */ char *fs_type; /* rw, ro, sw, or xx */ int fs_freq; /* dump frequency, in days */ - int fs_passno; /* pass number on parallel dump */ + int fs_passno; /* pass number on parallel fsck */ }; .Ed .Pp |