ChangeLog, mkjournal.c:

mkjournal.c: Add #include of netinet/in.h, since Solaris requires it
  	for ntohl().
bitmap-optimize
Theodore Ts'o 2000-10-26 20:45:58 +00:00
parent 241f224fb2
commit 17ee8b17f9
2 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2000-10-26 <tytso@snap.thunk.org>
* mkjournal.c: Add #include of netinet/in.h, since Solaris
requires it for ntohl().
* ext2_io.h (io_channel_write_byte): Add new interface to allow
callers to write specific byte ranges. This is an
optional interface, which not all IO channels may

View File

@ -25,6 +25,9 @@
#if HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#if HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#if EXT2_FLAT_INCLUDES
#include "ext2_fs.h"