summaryrefslogtreecommitdiff
path: root/misc/chattr.c
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2001-08-27 12:44:23 -0400
committerTheodore Ts'o <tytso@mit.edu>2001-08-27 12:44:23 -0400
commit0f8973fb092a40fd0a11b7ec95c09128c9fb8f0c (patch)
treef21b5878fed5d082aaf0fb1fb98bd7f7c4a743cc /misc/chattr.c
parent943ed874fc76bebf38288ebf0069718375f7f377 (diff)
downloade2fsprogs-0f8973fb092a40fd0a11b7ec95c09128c9fb8f0c.tar.gz
Remove EXT2FS_VERSION from the version display, since it
only confuses people. Make fsck's version display be consistent with the other e2fsprogs programs.
Diffstat (limited to 'misc/chattr.c')
-rw-r--r--misc/chattr.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/misc/chattr.c b/misc/chattr.c
index 56fef2f4..730e7b8b 100644
--- a/misc/chattr.c
+++ b/misc/chattr.c
@@ -284,9 +284,8 @@ int main (int argc, char ** argv)
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);