only confuses people.
Make fsck's version display be consistent with the other e2fsprogs
programs.
+2001-08-27 Theodore Tso <tytso@valinux.com>
+
+ * debugfs.c (main): Remove EXT2FS_VERSION from the version
+ display, since it only confuses people.
+
2001-08-15 Theodore Tso <tytso@valinux.com>
* Release of E2fsprogs 1.23
char *tmp;
initialize_ext2_error_table();
- fprintf (stderr, "debugfs %s, %s for EXT2 FS %s, %s\n",
- E2FSPROGS_VERSION, E2FSPROGS_DATE,
- EXT2FS_VERSION, EXT2FS_DATE);
+ fprintf (stderr, "debugfs %s (%s)\n", E2FSPROGS_VERSION,
+ E2FSPROGS_DATE);
while ((c = getopt (argc, argv, "iwcR:f:b:s:V")) != EOF) {
switch (c) {
2001-08-27 Theodore Tso <tytso@valinux.com>
+ * unix.c (main): Remove EXT2FS_VERSION from the version display,
+ since it only confuses people.
+
* pass1.c (strnlen): Provide strnlen if libc doesn't.
2001-08-15 Theodore Tso <tytso@valinux.com>
#endif
if (!(ctx->options & E2F_OPT_PREEN) || show_version_only)
- fprintf (stderr, _("e2fsck %s, %s for EXT2 FS %s, %s\n"),
- my_ver_string, my_ver_date, EXT2FS_VERSION,
- EXT2FS_DATE);
+ fprintf (stderr, "e2fsck %s (%s)\n", my_ver_string,
+ my_ver_date);
if (show_version_only) {
fprintf(stderr, _("\tUsing %s, %s\n"),
+2001-08-27 Theodore Tso <tytso@valinux.com>
+
+ * fsck.c (main): Make version display consisstent with the other
+ e2fsprogs programs.
+
+ * lsattr.c, chattr.c, mke2fs.c, tune2fs.c, dumpe2fs.c, e2image.c,
+ mklost+found.c: Remove EXT2FS_VERSION from the version
+ display, since it only confuses people.
+
2001-08-18 Theodore Tso <tytso@valinux.com>
* tune2fs.c (remove_journal_device): Remove unused variable
exit (1);
}
if (verbose)
- fprintf (stderr, _("chattr %s, %s for EXT2 FS %s, %s\n"),
- E2FSPROGS_VERSION, E2FSPROGS_DATE,
- EXT2FS_VERSION, EXT2FS_DATE);
+ fprintf (stderr, "chattr %s (%s)\n",
+ E2FSPROGS_VERSION, E2FSPROGS_DATE);
for (j = i; j < argc; j++)
change_attributes (argv[j]);
exit(0);
textdomain(NLS_CAT_NAME);
#endif
initialize_ext2_error_table();
- fprintf (stderr, _("dumpe2fs %s, %s for EXT2 FS %s, %s\n"),
- E2FSPROGS_VERSION, E2FSPROGS_DATE,
- EXT2FS_VERSION, EXT2FS_DATE);
+ fprintf (stderr, "dumpe2fs %s (%s)\n", E2FSPROGS_VERSION,
+ E2FSPROGS_DATE);
if (argc && *argv)
program_name = *argv;
bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
textdomain(NLS_CAT_NAME);
#endif
- fprintf (stderr, _("e2image %s, %s for EXT2 FS %s, %s\n"),
- E2FSPROGS_VERSION, E2FSPROGS_DATE,
- EXT2FS_VERSION, EXT2FS_DATE);
+ fprintf (stderr, "e2image %s (%s)\n", E2FSPROGS_VERSION,
+ E2FSPROGS_DATE);
if (argc && *argv)
program_name = *argv;
initialize_ext2_error_table();
PRS(argc, argv);
if (!notitle)
- printf(_("Parallelizing fsck version %s (%s)\n"),
- E2FSPROGS_VERSION, E2FSPROGS_DATE);
+ printf("fsck %s (%s)\n", E2FSPROGS_VERSION, E2FSPROGS_DATE);
fstab = getenv("FSTAB_FILE");
if (!fstab)
}
if (verbose)
- fprintf (stderr, _("lsattr %s, %s for EXT2 FS %s, %s\n"),
- E2FSPROGS_VERSION, E2FSPROGS_DATE,
- EXT2FS_VERSION, EXT2FS_DATE);
+ fprintf (stderr, "lsattr %s (%s)\n",
+ E2FSPROGS_VERSION, E2FSPROGS_DATE);
if (optind > argc - 1)
lsattr_args (".");
else
param.s_feature_ro_compat = 0;
}
#endif
- fprintf (stderr, _("mke2fs %s, %s for EXT2 FS %s, %s\n"),
- E2FSPROGS_VERSION, E2FSPROGS_DATE,
- EXT2FS_VERSION, EXT2FS_DATE);
+ fprintf (stderr, "mke2fs %s (%s)\n", E2FSPROGS_VERSION,
+ E2FSPROGS_DATE);
if (argc && *argv)
program_name = *argv;
while ((c = getopt (argc, argv,
bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
textdomain(NLS_CAT_NAME);
#endif
- fprintf (stderr, _("mklost+found %s, %s for EXT2 FS %s, %s\n"),
- E2FSPROGS_VERSION, E2FSPROGS_DATE,
- EXT2FS_VERSION, EXT2FS_DATE);
+ fprintf (stderr, "mklost+found %s (%s)\n", E2FSPROGS_VERSION,
+ E2FSPROGS_DATE);
if (argc != 1) {
fprintf (stderr, _("Usage: mklost+found\n"));
exit(1);
struct group * gr;
struct passwd * pw;
- printf(_("tune2fs %s, %s for EXT2 FS %s, %s\n"),
- E2FSPROGS_VERSION, E2FSPROGS_DATE,
- EXT2FS_VERSION, EXT2FS_DATE);
+ printf("tune2fs %s (%s)\n", E2FSPROGS_VERSION, E2FSPROGS_DATE);
while ((c = getopt (argc, argv, "c:e:fg:i:jlm:r:s:u:C:J:L:M:O:U:")) != EOF)
switch (c)
{