aboutsummaryrefslogtreecommitdiff
path: root/sbin/dump/dump.h
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2001-01-29 09:45:51 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2001-01-29 09:45:51 +0000
commit941ee632745d1592fb5986960a56ae597f230ec5 (patch)
tree6bd84448b837b2c3c5bf12d7dff705377b8c4d2a /sbin/dump/dump.h
parent810d0bd1a947d2fb8715f92478ae156f746b9414 (diff)
downloadsrc-941ee632745d1592fb5986960a56ae597f230ec5.tar.gz
src-941ee632745d1592fb5986960a56ae597f230ec5.zip
Use <sys/queue.h> instead of home-rolled list.
Submitted by: "Jason Smethers" <jsmethers@pdq.net>
Notes
Notes: svn path=/head/; revision=71787
Diffstat (limited to 'sbin/dump/dump.h')
-rw-r--r--sbin/dump/dump.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/sbin/dump/dump.h b/sbin/dump/dump.h
index 2c907a957389..b41ffda95f98 100644
--- a/sbin/dump/dump.h
+++ b/sbin/dump/dump.h
@@ -31,6 +31,8 @@
* SUCH DAMAGE.
*
* @(#)dump.h 8.2 (Berkeley) 4/28/95
+ *
+ * $FreeBSD$
*/
#define MAXINOPB (MAXBSIZE / sizeof(struct dinode))
@@ -166,11 +168,6 @@ struct dumpdates {
char dd_level;
time_t dd_ddate;
};
-struct dumptime {
- struct dumpdates dt_value;
- struct dumptime *dt_next;
-};
-struct dumptime *dthead; /* head of the list version */
int nddates; /* number of records (might be zero) */
int ddates_in; /* we have read the increment file */
struct dumpdates **ddatev; /* the arrayfied version */