Update copyright and license print spam.

This commit is contained in:
Nicholas J. Kain 2012-07-20 09:37:41 -04:00
parent 25ce5cceaa
commit c3272f07f4
4 changed files with 12 additions and 12 deletions

View File

@ -1,4 +1,4 @@
.TH IFCHD 8 2011-07-12 Linux "Linux Administrator's Manual"
.TH IFCHD 8 2012-07-20 Linux "Linux Administrator's Manual"
.SH NAME
ifchd \- interface change daemon
.SH SYNOPSIS

View File

@ -1,6 +1,6 @@
/* ifchd.c - interface change daemon
*
* Copyright (c) 2004-2011 Nicholas J. Kain <njkain at gmail dot com>
* Copyright (c) 2004-2012 Nicholas J. Kain <njkain at gmail dot com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -819,9 +819,9 @@ int main(int argc, char** argv) {
case 'h':
printf(
"ifchd %s, if change daemon. Licensed under GNU GPL.\n", IFCHD_VERSION);
"ifchd %s, if change daemon. Licensed under 2-clause BSD.\n", IFCHD_VERSION);
printf(
"Copyright (C) 2004-2011 Nicholas J. Kain\n"
"Copyright (C) 2004-2012 Nicholas J. Kain\n"
"Usage: ifchd [OPTIONS]\n"
" -d, --detach detach from TTY and daemonize\n"
" -n, --nodetach stay attached to TTY\n"
@ -845,9 +845,9 @@ int main(int argc, char** argv) {
case 'v':
printf(
"ifchd %s, if change daemon. Licensed under GNU GPL.\n", IFCHD_VERSION);
"ifchd %s, if change daemon. Licensed under 2-clause BSD.\n", IFCHD_VERSION);
printf(
"Copyright (C) 2004-2011 Nicholas J. Kain\n"
"Copyright (C) 2004-2012 Nicholas J. Kain\nAll rights reserved.\n"
"This is free software; see the source for copying conditions. There is NO\n"
"WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n");
exit(EXIT_FAILURE);

View File

@ -1,4 +1,4 @@
.TH NDHC 8 2011-07-12 Linux "Linux Administrator's Manual"
.TH NDHC 8 2012-07-20 Linux "Linux Administrator's Manual"
.SH NAME
ndhc \- secure DHCP client
.SH SYNOPSIS

View File

@ -1,6 +1,6 @@
/* ndhc.c - DHCP client
*
* Copyright (c) 2004-2011 Nicholas J. Kain <njkain at gmail dot com>
* Copyright (c) 2004-2012 Nicholas J. Kain <njkain at gmail dot com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -89,8 +89,8 @@ struct client_config_t client_config = {
static void show_usage(void)
{
printf(
"ndhc " VERSION ", dhcp client. Licensed under GNU GPL.\n"
"Copyright (C) 2004-2011 Nicholas J. Kain\n"
"ndhc " VERSION ", dhcp client. Licensed under 2-clause BSD.\n"
"Copyright (C) 2004-2012 Nicholas J. Kain\n"
"Usage: ndhc [OPTIONS]\n\n"
" -c, --clientid=CLIENTID Client identifier\n"
" -h, --hostname=HOSTNAME Client hostname\n"
@ -379,9 +379,9 @@ int main(int argc, char **argv)
break;
case 'v':
printf(
"ndhc %s, dhcp client. Licensed under GNU GPL.\n", VERSION);
"ndhc %s, dhcp client. Licensed under 2-clause BSD.\n", VERSION);
printf(
"Copyright (C) 2004-2011 Nicholas J. Kain\n"
"Copyright (C) 2004-2012 Nicholas J. Kain\nAll rights reserved.\n"
"This is free software; see the source for copying conditions. There is NO\n"
"WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n");
exit(EXIT_SUCCESS);