From 5a8c178924afd579cc4b70a1a7feb321e8d12b91 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Sun, 12 Nov 2017 15:01:36 +0000 Subject: [PATCH] other: add Jose Bollo to version output credits Be also a little bit more verbose about licenses in version output. Signed-off-by: Sami Kerola --- src/other.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/other.c b/src/other.c index 9b83a27..730e858 100644 --- a/src/other.c +++ b/src/other.c @@ -534,10 +534,13 @@ void clean_up(struct conf_t *state) void __attribute__ ((__noreturn__)) print_version(void) { fprintf(stdout, "%s\n" - "Original design by Sami Kerola.\n" + "Original design and maintainer Sami Kerola.\n" "XML support by Dominic Germain, Sogetel inc.\n" - "IPv6 support by Cheer Xiao.\n\n" - "The software has FreeBSD License.\n", PACKAGE_STRING); + "IPv6 support by Cheer Xiao.\n" + "Mustach templating support by Jose Bollo.\n" + " The dhcpd-pools is FreeBSD Licensed,\n" + " gnulib parts are mostly GPL,\n" + " and mustache uses Apache License.\n", PACKAGE_STRING); exit(EXIT_SUCCESS); }