diff options
author | Theodore Ts'o <tytso@mit.edu> | 2004-04-03 13:55:37 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2004-04-03 13:55:37 -0500 |
commit | cd668fdd11c7dd9607fdd5bb1e8a65e2e120e05f (patch) | |
tree | 53ed8c722931d33eb70f7901bd78d8986f15daf2 /ext2ed | |
parent | dd60705665b916c9f67c3bbf86aa6bb620a14ecd (diff) | |
download | e2fsprogs-cd668fdd11c7dd9607fdd5bb1e8a65e2e120e05f.tar.gz |
ext2ed.h: Use the ext2_fs.h header file from libext2fs, instead
from the kernel header files.
Diffstat (limited to 'ext2ed')
-rw-r--r-- | ext2ed/ChangeLog | 3 | ||||
-rw-r--r-- | ext2ed/ext2ed.h | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/ext2ed/ChangeLog b/ext2ed/ChangeLog index c233a754..643ebf45 100644 --- a/ext2ed/ChangeLog +++ b/ext2ed/ChangeLog @@ -1,5 +1,8 @@ 2004-04-03 Theodore Ts'o <tytso@mit.edu> + * ext2ed.h: Use the ext2_fs.h header file from libext2fs, instead + from the kernel header files. + * Makefile.in: Update the modtime even if subst doesn't need to update the ext2ed man page and conbfiguration, to avoid always re-running subst, especially since there are no diff --git a/ext2ed/ext2ed.h b/ext2ed/ext2ed.h index 3b165e7b..deae516b 100644 --- a/ext2ed/ext2ed.h +++ b/ext2ed/ext2ed.h @@ -34,7 +34,7 @@ Copyright (C) 1995 Gadi Oxman #define DEBUG /* Activate self-sanity checks */ -#include <linux/ext2_fs.h> /* Main kernel ext2 include file */ +#include <ext2fs/ext2_fs.h> /* Main kernel ext2 include file */ #include <sys/stat.h> #include <ncurses.h> |