diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-07 00:52:58 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-07 00:52:58 +0000 |
commit | db12d1d733ab7de0c5f4cda261eb79fd334a4ed9 (patch) | |
tree | baed427ea76367f8561164995e41cfd34575e0c1 /networking/udhcp | |
parent | 30e5cf8875f757581256a4ec4f6935d1cb28a0fb (diff) | |
download | busybox-db12d1d733ab7de0c5f4cda261eb79fd334a4ed9.tar.gz |
Fix forgotten license comments
Diffstat (limited to 'networking/udhcp')
-rw-r--r-- | networking/udhcp/arpping.c | 2 | ||||
-rw-r--r-- | networking/udhcp/files.c | 2 | ||||
-rw-r--r-- | networking/udhcp/leases.c | 2 | ||||
-rw-r--r-- | networking/udhcp/options.c | 2 | ||||
-rw-r--r-- | networking/udhcp/packet.c | 6 | ||||
-rw-r--r-- | networking/udhcp/static_leases.c | 1 |
6 files changed, 15 insertions, 0 deletions
diff --git a/networking/udhcp/arpping.c b/networking/udhcp/arpping.c index e0710dc4a..b10bff651 100644 --- a/networking/udhcp/arpping.c +++ b/networking/udhcp/arpping.c @@ -4,6 +4,8 @@ * * Mostly stolen from: dhcpcd - DHCP client daemon * by Yoichi Hariguchi <yoichi@fore.com> + * + * Licensed under GPLv2, see file LICENSE in this tarball for details. */ #include <netinet/if_ether.h> diff --git a/networking/udhcp/files.c b/networking/udhcp/files.c index 0b97d76a5..4f7b52056 100644 --- a/networking/udhcp/files.c +++ b/networking/udhcp/files.c @@ -2,6 +2,8 @@ /* * files.c -- DHCP server file manipulation * * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001 + * + * Licensed under GPLv2, see file LICENSE in this tarball for details. */ #include <netinet/ether.h> diff --git a/networking/udhcp/leases.c b/networking/udhcp/leases.c index ff52da9fb..a981db0d7 100644 --- a/networking/udhcp/leases.c +++ b/networking/udhcp/leases.c @@ -2,6 +2,8 @@ /* * leases.c -- tools to manage DHCP leases * Russ Dill <Russ.Dill@asu.edu> July 2001 + * + * Licensed under GPLv2, see file LICENSE in this tarball for details. */ #include "common.h" diff --git a/networking/udhcp/options.c b/networking/udhcp/options.c index 6bf99e2b9..2c27e7033 100644 --- a/networking/udhcp/options.c +++ b/networking/udhcp/options.c @@ -2,6 +2,8 @@ /* * options.c -- DHCP server option packet tools * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001 + * + * Licensed under GPLv2, see file LICENSE in this tarball for details. */ #include "common.h" diff --git a/networking/udhcp/packet.c b/networking/udhcp/packet.c index 1a6f7e6a0..e2c8e6ead 100644 --- a/networking/udhcp/packet.c +++ b/networking/udhcp/packet.c @@ -1,4 +1,10 @@ /* vi: set sw=4 ts=4: */ +/* + * packet.c -- packet ops + * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001 + * + * Licensed under GPLv2, see file LICENSE in this tarball for details. + */ #include <netinet/in.h> #if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined _NEWLIB_VERSION diff --git a/networking/udhcp/static_leases.c b/networking/udhcp/static_leases.c index 43f1c9825..7540f7f5e 100644 --- a/networking/udhcp/static_leases.c +++ b/networking/udhcp/static_leases.c @@ -5,6 +5,7 @@ * * Wade Berrier <wberrier@myrealbox.com> September 2004 * + * Licensed under GPLv2, see file LICENSE in this tarball for details. */ #include "common.h" |