diff options
author | rbuj <[email protected]> | 2021-02-04 12:08:40 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-02-26 22:07:50 +0100 |
commit | b024b7a86789012411583716bc8dae48415d5b28 (patch) | |
tree | 3016057ce155407113eb67332311581c03643e34 /src | |
parent | 7ab70915e515337e9900809ddaf404f8d57622ec (diff) | |
download | marco-b024b7a86789012411583716bc8dae48415d5b28.tar.bz2 marco-b024b7a86789012411583716bc8dae48415d5b28.tar.xz |
Remove the copyright information when printing the version from the command line
Diffstat (limited to 'src')
-rw-r--r-- | src/core/main.c | 32 |
1 files changed, 4 insertions, 28 deletions
diff --git a/src/core/main.c b/src/core/main.c index 19b67aff..3ca95e6f 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -111,33 +111,6 @@ log_handler (const gchar *log_domain, } /** - * Prints the version notice. This is shown when Marco is called - * with the --version switch. - */ -static void -version (void) -{ - const int latest_year = 2009; - char yearbuffer[256]; - GDate date; - - /* this is all so the string to translate stays constant. - * see how much we love the translators. - */ - g_date_set_dmy (&date, 1, G_DATE_JANUARY, latest_year); - if (g_date_strftime (yearbuffer, sizeof (yearbuffer), "%Y", &date)==0) - /* didn't work? fall back to decimal representation */ - g_sprintf (yearbuffer, "%d", latest_year); - - g_print (_("marco %s\n" - "Copyright (C) 2001-%s Havoc Pennington, Red Hat, Inc., and others\n" - "This is free software; see the source for copying conditions.\n" - "There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"), - VERSION, yearbuffer); - exit (0); -} - -/** * Prints a list of which configure script options were used to * build this copy of Marco. This is actually always called * on startup, but it's all no-op unless we're in verbose mode @@ -471,7 +444,10 @@ main (int argc, char **argv) meta_set_syncing (meta_args.sync || (g_getenv ("MARCO_SYNC") != NULL)); if (meta_args.print_version) - version (); + { + g_print ("%s\n", PACKAGE_STRING); + exit (EXIT_SUCCESS); + } meta_select_display (meta_args.display_name); |