ChangeLog, main.c, .del-resize2fs-1.12.spec~70080ffd, resize2fs.8.in:
Decouple version numbers from the base e2fsprogs release.
diff --git a/resize/main.c b/resize/main.c
index e75a8c3..87aa8dc 100644
--- a/resize/main.c
+++ b/resize/main.c
@@ -17,7 +17,7 @@
#include "resize2fs.h"
-#include "../version.h"
+#include "./version.h"
char *program_name, *device_name;
@@ -116,9 +116,8 @@
initialize_ext2_error_table();
- fprintf (stderr, "resize2fs %s, %s for EXT2 FS %s, %s\n",
- E2FSPROGS_VERSION, E2FSPROGS_DATE,
- EXT2FS_VERSION, EXT2FS_DATE);
+ fprintf (stderr, "resize2fs %s (%s)\n",
+ E2FSPROGS_VERSION, E2FSPROGS_DATE);
fprintf(stderr, "Copyright 1998 by Theodore Ts'o and PowerQuest, Inc. All Rights Reserved.\n\n");
if (argc && *argv)
program_name = *argv;