OSDN Git Service

.del-ext2_fs.h~7a460879, ChangeLog:
authorTheodore Ts'o <tytso@mit.edu>
Mon, 3 Apr 2000 13:48:52 +0000 (13:48 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 3 Apr 2000 13:48:52 +0000 (13:48 +0000)
  ext2_fs.h (EXT2_NOCOMPR_FL): Rename EXT2_NOCOMP_FL to EXT2_NOCOMPR_FL.
ChangeLog, Makefile.in, pf.c:
  pf.c (print_flags): Rename EXT2_NOCOMP_FL to  EXT2_NOCOMPR_FL.
  Makefile.in: Add "set -e" so that any errors in installing header
   files causes an immediate exit.

include/linux/ChangeLog
include/linux/ext2_fs.h
lib/e2p/ChangeLog
lib/e2p/Makefile.in
lib/e2p/pf.c

index 70a266f..8534015 100644 (file)
@@ -1,3 +1,8 @@
+2000-04-03  Theodore Ts'o  <tytso@valinux.com>
+
+       * ext2_fs.h (EXT2_NOCOMPR_FL): Rename EXT2_NOCOMP_FL to
+               EXT2_NOCOMPR_FL.
+
 2000-02-06  Theodore Ts'o  <tytso@valinux.com>
 
        * ext2_fs.h: Fix header to skip defining EXT2FS_DEBUG since blows
index 72d9382..aa0f188 100644 (file)
@@ -181,7 +181,7 @@ struct ext2_group_desc
 /* Reserved for compression usage... */
 #define EXT2_DIRTY_FL                  0x00000100
 #define EXT2_COMPRBLK_FL               0x00000200 /* One or more compressed clusters */
-#define EXT2_NOCOMP_FL                 0x00000400 /* Don't compress */
+#define EXT2_NOCOMPR_FL                0x00000400 /* Access raw compressed data */
 #define EXT2_ECOMPR_FL                 0x00000800 /* Compression error */
 /* End compression flags --- maybe not all used */     
 #define EXT2_BTREE_FL                  0x00001000 /* btree format dir */
index ac3c6a4..e69cc20 100644 (file)
@@ -1,3 +1,10 @@
+2000-04-03  Theodore Ts'o  <tytso@valinux.com>
+
+       * pf.c (print_flags): Rename EXT2_NOCOMP_FL to  EXT2_NOCOMPR_FL.
+
+       * Makefile.in: Add "set -e" so that any errors in installing
+               header files causes an immediate exit.
+
 2000-02-10  Theodore Ts'o  <tytso@valinux.com>
 
        * Makefile.in: Install the e2p.h header.
index c33b1ba..e852e5d 100644 (file)
@@ -79,7 +79,7 @@ install:: all installdirs
        $(CHMOD) 644 $(DESTDIR)$(libdir)/libe2p.a
        -$(RANLIB) $(DESTDIR)$(libdir)/libe2p.a
        $(CHMOD) $(LIBMODE) $(DESTDIR)$(libdir)/libe2p.a
-       for i in $(HFILES); do \
+       set -e; for i in $(HFILES); do \
          $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(includedir)/e2p/$$i; \
        done
 
index 91bd59e..c109ac2 100644 (file)
@@ -35,7 +35,7 @@ static struct flags_name flags_array[] = {
        { EXT2_COMPR_FL, "c", "Compression_requested" },
        { EXT2_COMPRBLK_FL, "B", "Compressed_file" },
        { EXT2_DIRTY_FL, "D", "Compressed dirty file" },
-       { EXT2_NOCOMP_FL, "X", "Raw_access" },
+       { EXT2_NOCOMPR_FL, "X", "Raw_access" },
        { EXT2_ECOMPR_FL, "E", "Compression_Error" },
        { 0, NULL, NULL }
 };