summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/actions.c4
-rw-r--r--src/main.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/actions.c b/src/actions.c
index c0fc569..8c55c04 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -1504,7 +1504,7 @@ cmd_kill (int interactive UNUSED, struct cmdarg **args UNUSED)
cmdret *
cmd_version (int interactive UNUSED, struct cmdarg **args UNUSED)
{
- return cmdret_new (RET_SUCCESS, "%s", PACKAGE " " VERSION " (built " __DATE__ " " __TIME__ ")");
+ return cmdret_new (RET_SUCCESS, "%s", PACKAGE " " VERSION);
}
static char *
@@ -3345,7 +3345,7 @@ cmd_license (int interactive UNUSED, struct cmdarg **args UNUSED)
int y = 10;
int i;
int max_width = 0;
- char *license_text[] = { PACKAGE " " VERSION, "(built " __DATE__ " " __TIME__ ")",
+ char *license_text[] = { PACKAGE " " VERSION,
"",
"Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts",
"",
diff --git a/src/main.c b/src/main.c
index 52dbcce..900a828 100644
--- a/src/main.c
+++ b/src/main.c
@@ -340,7 +340,7 @@ set_sig_handler (int sig, void (*action)(int))
static void
print_version (void)
{
- printf ("%s %s (built %s %s)\n", PACKAGE, VERSION, __DATE__, __TIME__);
+ printf ("%s %s\n", PACKAGE, VERSION);
printf ("Copyright (C) 2000-2008 Shawn Betts\n\n");
exit (EXIT_SUCCESS);