diff options
author | 2004-03-31 22:08:32 +0000 | |
---|---|---|
committer | 2004-03-31 22:08:32 +0000 | |
commit | 5c93b2165b54903068c2496efb8d70d138f8a3de (patch) | |
tree | 2380bf476d56eba144cb1bb04cf810e5c11fb38b | |
parent | don't skip ip options check when UseDNS=no; ok markus@ (diff) | |
download | wireguard-openbsd-5c93b2165b54903068c2496efb8d70d138f8a3de.tar.xz wireguard-openbsd-5c93b2165b54903068c2496efb8d70d138f8a3de.zip |
dumped is really spelled with one p and not two
from Daniel Lucq
-rw-r--r-- | include/protocols/dumprestore.h | 8 | ||||
-rw-r--r-- | sbin/restore/restore.h | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/include/protocols/dumprestore.h b/include/protocols/dumprestore.h index 7ab3a1c0dad..6e61c01ddf4 100644 --- a/include/protocols/dumprestore.h +++ b/include/protocols/dumprestore.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dumprestore.h,v 1.6 2003/08/25 23:28:34 tedu Exp $ */ +/* $OpenBSD: dumprestore.h,v 1.7 2004/03/31 22:08:32 henning Exp $ */ /* $NetBSD: dumprestore.h,v 1.6 1994/10/26 00:56:49 cgd Exp $ */ /* @@ -81,9 +81,9 @@ union u_spcl { char c_addr[TP_NINDIR]; /* 1 => data; 0 => hole in inode */ char c_label[LBLSIZE]; /* dump label */ int32_t c_level; /* level of this dump */ - char c_filesys[NAMELEN]; /* name of dumpped file system */ - char c_dev[NAMELEN]; /* name of dumpped device */ - char c_host[NAMELEN]; /* name of dumpped host */ + char c_filesys[NAMELEN]; /* name of dumped file system */ + char c_dev[NAMELEN]; /* name of dumped device */ + char c_host[NAMELEN]; /* name of dumped host */ int32_t c_flags; /* additional information */ int32_t c_firstrec; /* first record on volume */ int32_t c_spare[32]; /* reserved for future uses */ diff --git a/sbin/restore/restore.h b/sbin/restore/restore.h index a40fbd36a45..e88ec7d44d5 100644 --- a/sbin/restore/restore.h +++ b/sbin/restore/restore.h @@ -1,4 +1,4 @@ -/* $OpenBSD: restore.h,v 1.5 2003/08/25 23:28:16 tedu Exp $ */ +/* $OpenBSD: restore.h,v 1.6 2004/03/31 22:08:32 henning Exp $ */ /* $NetBSD: restore.h,v 1.8 1997/07/01 05:37:54 lukem Exp $ */ /* @@ -75,7 +75,7 @@ struct entry { char e_type; /* type of this entry, see below */ short e_flags; /* status flags, see below */ ino_t e_ino; /* inode number in previous file sys */ - long e_index; /* unique index (for dumpped table) */ + long e_index; /* unique index (for dumped table) */ struct entry *e_parent; /* pointer to parent directory (..) */ struct entry *e_sibling; /* next element in this directory (.) */ struct entry *e_links; /* hard links to this inode */ |