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 <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola 2017-11-12 15:01:36 +00:00
parent d25e7afa1c
commit 5a8c178924
No known key found for this signature in database
GPG key ID: A9553245FDE9B739

View file

@ -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);
}