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/klogd.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'syslogd/klogd.c') diff --git a/syslogd/klogd.c b/syslogd/klogd.c index ca16e4e..d2301ee 100644 --- a/syslogd/klogd.c +++ b/syslogd/klogd.c @@ -25,6 +25,7 @@ #include #include "config.h" +#include "util.h" enum { KLOG_CLOSE = 0, @@ -48,13 +49,6 @@ static const struct option options[] = { static const char *shortopt = "hVl:"; -static const char *versiontext = -"klogd (Pygos init) "PACKAGE_VERSION"\n" -"Copyright (C) 2018 David Oberhollenzer\n" -"License GPLv3+: GNU GPL version 3 or later .\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"; - static const char *helptext = "Usage: klogd [OPTION]... \n\n" "Collect printk() messages from the kernel and forward them to syslogd.\n" @@ -82,8 +76,7 @@ static void process_options(int argc, char **argv) fputs(helptext, stdout); exit(EXIT_SUCCESS); case 'V': - fputs(versiontext, stdout); - exit(EXIT_SUCCESS); + print_version("klogd"); default: fputs("Try `klogd --help' for more information\n", stderr); -- cgit v1.2.3