diff options
Diffstat (limited to 'syslogd/syslogd.c')
| -rw-r--r-- | syslogd/syslogd.c | 14 | 
1 files changed, 1 insertions, 13 deletions
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;  		}  | 
