From 42fba964c9e23830454fbfdd3895da315356bd27 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Sat, 1 Sep 2018 17:22:24 +0200 Subject: Centralize/unify version string printing Signed-off-by: David Oberhollenzer --- syslogd/syslogd.c | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'syslogd/syslogd.c') diff --git a/syslogd/syslogd.c b/syslogd/syslogd.c index d2433e9..3b88299 100644 --- a/syslogd/syslogd.c +++ b/syslogd/syslogd.c @@ -32,10 +32,6 @@ #include "syslogd.h" #include "util.h" - -#define GPL_URL "https://gnu.org/licenses/gpl.html" - - static const struct option long_opts[] = { { "help", no_argument, NULL, 'h' }, { "version", no_argument, NULL, 'V' }, @@ -49,13 +45,6 @@ static const struct option long_opts[] = { static const char *short_opts = "hVcrm:u:g:"; -const char *version_string = -"usyslogd (pygos init) " PACKAGE_VERSION "\n" -"Copyright (C) 2018 David Oberhollenzer\n\n" -"License GPLv3+: GNU GPL version 3 or later <" GPL_URL ">.\n" -"This is free software: you are free to change and redistribute it.\n" -"There is NO WARRANTY, to the extent permitted by law.\n"; - const char *usage_string = "Usage: usyslogd [OPTIONS..]\n\n" "The following options are supported:\n" @@ -183,8 +172,7 @@ static void process_options(int argc, char **argv) fputs(usage_string, stdout); exit(EXIT_SUCCESS); case 'V': - fputs(version_string, stdout); - exit(EXIT_SUCCESS); + print_version("usyslogd"); default: goto fail; } -- cgit v1.2.3