aboutsummaryrefslogtreecommitdiff
path: root/editors/vi.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-01-29 19:14:26 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2017-01-29 19:14:26 +0100
commiteba7fe6bb9fdc89cf9d4d33043cd3856253d303d (patch)
tree7923732f674e98cdd0d5f9b0468c8a19c964bba3 /editors/vi.c
parent86663910babe4684fe4ac7cead2fab6f4aa576d7 (diff)
downloadbusybox-eba7fe6bb9fdc89cf9d4d33043cd3856253d303d.tar.gz
vi,fsck: do not use build timestamp unconditionally. Closes 9626
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'editors/vi.c')
-rw-r--r--editors/vi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/vi.c b/editors/vi.c
index 1e5ef44fb..bbaac50df 100644
--- a/editors/vi.c
+++ b/editors/vi.c
@@ -1457,7 +1457,7 @@ static void colon(char *buf)
}
#endif /* FEATURE_VI_SEARCH */
} else if (strncmp(cmd, "version", i) == 0) { // show software version
- status_line(BB_VER " " BB_BT);
+ status_line(BB_VER);
} else if (strncmp(cmd, "write", i) == 0 // write text to file
|| strncmp(cmd, "wq", i) == 0
|| strncmp(cmd, "wn", i) == 0