Update copyright and license print spam.
This commit is contained in:
parent
25ce5cceaa
commit
c3272f07f4
@ -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
|
.SH NAME
|
||||||
ifchd \- interface change daemon
|
ifchd \- interface change daemon
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* ifchd.c - interface change daemon
|
/* 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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
@ -819,9 +819,9 @@ int main(int argc, char** argv) {
|
|||||||
|
|
||||||
case 'h':
|
case 'h':
|
||||||
printf(
|
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(
|
printf(
|
||||||
"Copyright (C) 2004-2011 Nicholas J. Kain\n"
|
"Copyright (C) 2004-2012 Nicholas J. Kain\n"
|
||||||
"Usage: ifchd [OPTIONS]\n"
|
"Usage: ifchd [OPTIONS]\n"
|
||||||
" -d, --detach detach from TTY and daemonize\n"
|
" -d, --detach detach from TTY and daemonize\n"
|
||||||
" -n, --nodetach stay attached to TTY\n"
|
" -n, --nodetach stay attached to TTY\n"
|
||||||
@ -845,9 +845,9 @@ int main(int argc, char** argv) {
|
|||||||
|
|
||||||
case 'v':
|
case 'v':
|
||||||
printf(
|
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(
|
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"
|
"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");
|
"WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n");
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
|
@ -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
|
.SH NAME
|
||||||
ndhc \- secure DHCP client
|
ndhc \- secure DHCP client
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
10
ndhc/ndhc.c
10
ndhc/ndhc.c
@ -1,6 +1,6 @@
|
|||||||
/* ndhc.c - DHCP client
|
/* 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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* 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)
|
static void show_usage(void)
|
||||||
{
|
{
|
||||||
printf(
|
printf(
|
||||||
"ndhc " VERSION ", dhcp client. Licensed under GNU GPL.\n"
|
"ndhc " VERSION ", dhcp client. Licensed under 2-clause BSD.\n"
|
||||||
"Copyright (C) 2004-2011 Nicholas J. Kain\n"
|
"Copyright (C) 2004-2012 Nicholas J. Kain\n"
|
||||||
"Usage: ndhc [OPTIONS]\n\n"
|
"Usage: ndhc [OPTIONS]\n\n"
|
||||||
" -c, --clientid=CLIENTID Client identifier\n"
|
" -c, --clientid=CLIENTID Client identifier\n"
|
||||||
" -h, --hostname=HOSTNAME Client hostname\n"
|
" -h, --hostname=HOSTNAME Client hostname\n"
|
||||||
@ -379,9 +379,9 @@ int main(int argc, char **argv)
|
|||||||
break;
|
break;
|
||||||
case 'v':
|
case 'v':
|
||||||
printf(
|
printf(
|
||||||
"ndhc %s, dhcp client. Licensed under GNU GPL.\n", VERSION);
|
"ndhc %s, dhcp client. Licensed under 2-clause BSD.\n", VERSION);
|
||||||
printf(
|
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"
|
"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");
|
"WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n");
|
||||||
exit(EXIT_SUCCESS);
|
exit(EXIT_SUCCESS);
|
||||||
|
Loading…
Reference in New Issue
Block a user