]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
ChangeLog, fsck.c:
authorTheodore Ts'o <tytso@mit.edu>
Sat, 12 May 2001 16:12:12 +0000 (16:12 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Sat, 12 May 2001 16:12:12 +0000 (16:12 +0000)
  fsck.c (PRS): fsck -? now prints the usage message.
ChangeLog, jfs.h:
  jfs.h (JFS_DEBUG): Don't define JFS_DEBUG for non-kernel builds; if
   necessasry it can be set with configure --enable-jfs-debug

include/linux/ChangeLog
include/linux/jfs.h
misc/ChangeLog
misc/fsck.c

index fe2566ba07c0d9b8c2d165ebea6654749ca7f5ee..f0959b8e083c3a26aaf1dc015f08844566084e86 100644 (file)
@@ -1,3 +1,8 @@
+2001-05-12  Theodore Tso  <tytso@valinux.com>
+
+       * jfs.h (JFS_DEBUG): Don't define JFS_DEBUG for non-kernel builds;
+               if necessasry it can be set with configure --enable-jfs-debug
+
 2001-05-01  Theodore Tso  <tytso@valinux.com>
 
        * ext2_fs.h: New feature assignments for
index c8bdb32ab4abe4dcf08da334a8814fa7036f543e..d4a83dee7944d40565ff11ba78932962d7bb5482 100644 (file)
@@ -26,8 +26,6 @@
  */
 #ifdef __KERNEL__
 #define JFS_DEBUG
-#else
-#define JFS_DEBUG
 #endif
 
 extern int journal_enable_debug;
index 490403fc2adb4fcec804635a7bb140a3ffd9a0bb..3bdb897696236031d1501061c86d8536e0217cc6 100644 (file)
@@ -1,5 +1,7 @@
 2001-05-12  Theodore Tso  <tytso@valinux.com>
 
+       * fsck.c (PRS): fsck -? now prints the usage message.
+
        * badblocks.8.in, dumpe2fs.8.in, e2label.8.in, mke2fs.8.in, 
                mklost+found.8.in, tune2fs.8.in: Fix typo; removed
                excess "anonymous" in the AVAILABILITY section.
index 2c5699ffdaa8b68b2596b37e0757dd5574189621..33b402898e6c1d3e043d96fda515be5248837acc 100644 (file)
@@ -902,6 +902,9 @@ static void PRS(int argc, char *argv[])
                        case '-':
                                opts_for_fsck++;
                                break;
+                       case '?':
+                               usage();
+                               break;
                        default:
                                options[++opt] = arg[j];
                                break;