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 | |
parent | 30e5cf8875f757581256a4ec4f6935d1cb28a0fb (diff) | |
download | busybox-w32-db12d1d733ab7de0c5f4cda261eb79fd334a4ed9.tar.gz busybox-w32-db12d1d733ab7de0c5f4cda261eb79fd334a4ed9.tar.bz2 busybox-w32-db12d1d733ab7de0c5f4cda261eb79fd334a4ed9.zip |
Fix forgotten license comments
Diffstat (limited to 'networking')
-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 | ||||
-rw-r--r-- | networking/wget.c | 1 |
7 files changed, 16 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 @@ | |||
4 | * | 4 | * |
5 | * Mostly stolen from: dhcpcd - DHCP client daemon | 5 | * Mostly stolen from: dhcpcd - DHCP client daemon |
6 | * by Yoichi Hariguchi <yoichi@fore.com> | 6 | * by Yoichi Hariguchi <yoichi@fore.com> |
7 | * | ||
8 | * Licensed under GPLv2, see file LICENSE in this tarball for details. | ||
7 | */ | 9 | */ |
8 | 10 | ||
9 | #include <netinet/if_ether.h> | 11 | #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 @@ | |||
2 | /* | 2 | /* |
3 | * files.c -- DHCP server file manipulation * | 3 | * files.c -- DHCP server file manipulation * |
4 | * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001 | 4 | * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001 |
5 | * | ||
6 | * Licensed under GPLv2, see file LICENSE in this tarball for details. | ||
5 | */ | 7 | */ |
6 | 8 | ||
7 | #include <netinet/ether.h> | 9 | #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 @@ | |||
2 | /* | 2 | /* |
3 | * leases.c -- tools to manage DHCP leases | 3 | * leases.c -- tools to manage DHCP leases |
4 | * Russ Dill <Russ.Dill@asu.edu> July 2001 | 4 | * Russ Dill <Russ.Dill@asu.edu> July 2001 |
5 | * | ||
6 | * Licensed under GPLv2, see file LICENSE in this tarball for details. | ||
5 | */ | 7 | */ |
6 | 8 | ||
7 | #include "common.h" | 9 | #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 @@ | |||
2 | /* | 2 | /* |
3 | * options.c -- DHCP server option packet tools | 3 | * options.c -- DHCP server option packet tools |
4 | * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001 | 4 | * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001 |
5 | * | ||
6 | * Licensed under GPLv2, see file LICENSE in this tarball for details. | ||
5 | */ | 7 | */ |
6 | 8 | ||
7 | #include "common.h" | 9 | #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 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* | ||
3 | * packet.c -- packet ops | ||
4 | * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001 | ||
5 | * | ||
6 | * Licensed under GPLv2, see file LICENSE in this tarball for details. | ||
7 | */ | ||
2 | 8 | ||
3 | #include <netinet/in.h> | 9 | #include <netinet/in.h> |
4 | #if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined _NEWLIB_VERSION | 10 | #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 @@ | |||
5 | * | 5 | * |
6 | * Wade Berrier <wberrier@myrealbox.com> September 2004 | 6 | * Wade Berrier <wberrier@myrealbox.com> September 2004 |
7 | * | 7 | * |
8 | * Licensed under GPLv2, see file LICENSE in this tarball for details. | ||
8 | */ | 9 | */ |
9 | 10 | ||
10 | #include "common.h" | 11 | #include "common.h" |
diff --git a/networking/wget.c b/networking/wget.c index 3f80d615e..b40a1ac15 100644 --- a/networking/wget.c +++ b/networking/wget.c | |||
@@ -4,6 +4,7 @@ | |||
4 | * | 4 | * |
5 | * Chip Rosenthal Covad Communications <chip@laserlink.net> | 5 | * Chip Rosenthal Covad Communications <chip@laserlink.net> |
6 | * | 6 | * |
7 | * Licensed under GPLv2, see file LICENSE in this tarball for details. | ||
7 | */ | 8 | */ |
8 | 9 | ||
9 | #include "libbb.h" | 10 | #include "libbb.h" |