diff options
Diffstat (limited to 'util-linux/fsck_minix.c')
-rw-r--r-- | util-linux/fsck_minix.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util-linux/fsck_minix.c b/util-linux/fsck_minix.c index 955d66f23..74cccf671 100644 --- a/util-linux/fsck_minix.c +++ b/util-linux/fsck_minix.c | |||
@@ -114,7 +114,6 @@ static smallint version2; | |||
114 | enum { version2 = 0 }; | 114 | enum { version2 = 0 }; |
115 | #endif | 115 | #endif |
116 | 116 | ||
117 | #define PROGRAM_VERSION "1.2 - 11/11/96" | ||
118 | static smallint repair, automatic, verbose, list, show, warn_mode, force; | 117 | static smallint repair, automatic, verbose, list, show, warn_mode, force; |
119 | static smallint changed; /* is filesystem modified? */ | 118 | static smallint changed; /* is filesystem modified? */ |
120 | static smallint errors_uncorrected; /* flag if some error was not corrected */ | 119 | static smallint errors_uncorrected; /* flag if some error was not corrected */ |
@@ -1315,7 +1314,7 @@ int fsck_minix_main(int argc, char **argv) | |||
1315 | * flags and whether or not the -f switch was specified on the | 1314 | * flags and whether or not the -f switch was specified on the |
1316 | * command line. | 1315 | * command line. |
1317 | */ | 1316 | */ |
1318 | printf("%s, "PROGRAM_VERSION"\n", applet_name); | 1317 | printf("%s: %s\n", applet_name, bb_banner); |
1319 | 1318 | ||
1320 | if (!(Super.s_state & MINIX_ERROR_FS) | 1319 | if (!(Super.s_state & MINIX_ERROR_FS) |
1321 | && (Super.s_state & MINIX_VALID_FS) && !force | 1320 | && (Super.s_state & MINIX_VALID_FS) && !force |