aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-08-16 20:14:46 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-08-16 20:14:46 +0200
commit0ef64bdb40c54681e8dd5ab8df42ac88e4ab1d4a (patch)
treed8a71a3f044857bd36569f535815002367389b29 /networking/udhcp
parent0d555fc951fa09b2f7efb4b445a468a4bcc262f1 (diff)
downloadbusybox-w32-0ef64bdb40c54681e8dd5ab8df42ac88e4ab1d4a.tar.gz
busybox-w32-0ef64bdb40c54681e8dd5ab8df42ac88e4ab1d4a.tar.bz2
busybox-w32-0ef64bdb40c54681e8dd5ab8df42ac88e4ab1d4a.zip
*: make GNU licensing statement forms more regular
This change retains "or later" state! No licensing _changes_ here, only form is adjusted (article, space between "GPL" and "v2" and so on). Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp')
-rw-r--r--networking/udhcp/Kbuild.src2
-rw-r--r--networking/udhcp/arpping.c2
-rw-r--r--networking/udhcp/common.c2
-rw-r--r--networking/udhcp/common.h2
-rw-r--r--networking/udhcp/dhcpc.h2
-rw-r--r--networking/udhcp/dhcpd.h2
-rw-r--r--networking/udhcp/dhcprelay.c2
-rw-r--r--networking/udhcp/domain_codec.c2
-rw-r--r--networking/udhcp/dumpleases.c2
-rw-r--r--networking/udhcp/files.c2
-rw-r--r--networking/udhcp/leases.c2
-rw-r--r--networking/udhcp/packet.c2
-rw-r--r--networking/udhcp/static_leases.c2
13 files changed, 13 insertions, 13 deletions
diff --git a/networking/udhcp/Kbuild.src b/networking/udhcp/Kbuild.src
index f845bc1d9..b8767baea 100644
--- a/networking/udhcp/Kbuild.src
+++ b/networking/udhcp/Kbuild.src
@@ -2,7 +2,7 @@
2# 2#
3# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> 3# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
4# 4#
5# Licensed under the GPL v2 or later, see the file LICENSE in this tarball. 5# Licensed under GPLv2 or later, see file LICENSE in this source tree.
6# 6#
7 7
8lib-y:= 8lib-y:=
diff --git a/networking/udhcp/arpping.c b/networking/udhcp/arpping.c
index 7c8c24446..ff6347847 100644
--- a/networking/udhcp/arpping.c
+++ b/networking/udhcp/arpping.c
@@ -3,7 +3,7 @@
3 * Mostly stolen from: dhcpcd - DHCP client daemon 3 * Mostly stolen from: dhcpcd - DHCP client daemon
4 * by Yoichi Hariguchi <yoichi@fore.com> 4 * by Yoichi Hariguchi <yoichi@fore.com>
5 * 5 *
6 * Licensed under GPLv2, see file LICENSE in this tarball for details. 6 * Licensed under GPLv2, see file LICENSE in this source tree.
7 */ 7 */
8#include <netinet/if_ether.h> 8#include <netinet/if_ether.h>
9#include <net/if_arp.h> 9#include <net/if_arp.h>
diff --git a/networking/udhcp/common.c b/networking/udhcp/common.c
index 90a07ed09..97ab4cdbb 100644
--- a/networking/udhcp/common.c
+++ b/networking/udhcp/common.c
@@ -2,7 +2,7 @@
2/* 2/*
3 * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001 3 * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001
4 * 4 *
5 * Licensed under GPLv2, see file LICENSE in this tarball for details. 5 * Licensed under GPLv2, see file LICENSE in this source tree.
6 */ 6 */
7#include "common.h" 7#include "common.h"
8 8
diff --git a/networking/udhcp/common.h b/networking/udhcp/common.h
index ce81d1807..c5abf17d5 100644
--- a/networking/udhcp/common.h
+++ b/networking/udhcp/common.h
@@ -3,7 +3,7 @@
3 * Russ Dill <Russ.Dill@asu.edu> September 2001 3 * Russ Dill <Russ.Dill@asu.edu> September 2001
4 * Rewritten by Vladimir Oleynik <dzo@simtreas.ru> (C) 2003 4 * Rewritten by Vladimir Oleynik <dzo@simtreas.ru> (C) 2003
5 * 5 *
6 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 6 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
7 */ 7 */
8#ifndef UDHCP_COMMON_H 8#ifndef UDHCP_COMMON_H
9#define UDHCP_COMMON_H 1 9#define UDHCP_COMMON_H 1
diff --git a/networking/udhcp/dhcpc.h b/networking/udhcp/dhcpc.h
index 6bef562c7..9ef053a1b 100644
--- a/networking/udhcp/dhcpc.h
+++ b/networking/udhcp/dhcpc.h
@@ -1,6 +1,6 @@
1/* vi: set sw=4 ts=4: */ 1/* vi: set sw=4 ts=4: */
2/* 2/*
3 * Licensed under GPLv2, see file LICENSE in this tarball for details. 3 * Licensed under GPLv2, see file LICENSE in this source tree.
4 */ 4 */
5#ifndef UDHCP_DHCPC_H 5#ifndef UDHCP_DHCPC_H
6#define UDHCP_DHCPC_H 1 6#define UDHCP_DHCPC_H 1
diff --git a/networking/udhcp/dhcpd.h b/networking/udhcp/dhcpd.h
index eea90177f..7c801bf6b 100644
--- a/networking/udhcp/dhcpd.h
+++ b/networking/udhcp/dhcpd.h
@@ -1,6 +1,6 @@
1/* vi: set sw=4 ts=4: */ 1/* vi: set sw=4 ts=4: */
2/* 2/*
3 * Licensed under GPLv2, see file LICENSE in this tarball for details. 3 * Licensed under GPLv2, see file LICENSE in this source tree.
4 */ 4 */
5#ifndef UDHCP_DHCPD_H 5#ifndef UDHCP_DHCPD_H
6#define UDHCP_DHCPD_H 1 6#define UDHCP_DHCPD_H 1
diff --git a/networking/udhcp/dhcprelay.c b/networking/udhcp/dhcprelay.c
index d194a989b..a2c7f359d 100644
--- a/networking/udhcp/dhcprelay.c
+++ b/networking/udhcp/dhcprelay.c
@@ -1,7 +1,7 @@
1/* vi: set sw=4 ts=4: */ 1/* vi: set sw=4 ts=4: */
2/* Port to Busybox Copyright (C) 2006 Jesse Dutton <jessedutton@gmail.com> 2/* Port to Busybox Copyright (C) 2006 Jesse Dutton <jessedutton@gmail.com>
3 * 3 *
4 * Licensed under GPL v2, see file LICENSE in this tarball for details. 4 * Licensed under GPLv2, see file LICENSE in this source tree.
5 * 5 *
6 * DHCP Relay for 'DHCPv4 Configuration of IPSec Tunnel Mode' support 6 * DHCP Relay for 'DHCPv4 Configuration of IPSec Tunnel Mode' support
7 * Copyright (C) 2002 Mario Strasser <mast@gmx.net>, 7 * Copyright (C) 2002 Mario Strasser <mast@gmx.net>,
diff --git a/networking/udhcp/domain_codec.c b/networking/udhcp/domain_codec.c
index 2dd5347ae..c1325d8be 100644
--- a/networking/udhcp/domain_codec.c
+++ b/networking/udhcp/domain_codec.c
@@ -4,7 +4,7 @@
4 * 4 *
5 * Loosely based on the isc-dhcpd implementation by dhankins@isc.org 5 * Loosely based on the isc-dhcpd implementation by dhankins@isc.org
6 * 6 *
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9#ifdef DNS_COMPR_TESTING 9#ifdef DNS_COMPR_TESTING
10# define FAST_FUNC /* nothing */ 10# define FAST_FUNC /* nothing */
diff --git a/networking/udhcp/dumpleases.c b/networking/udhcp/dumpleases.c
index fb6219fba..2eaadb6eb 100644
--- a/networking/udhcp/dumpleases.c
+++ b/networking/udhcp/dumpleases.c
@@ -1,6 +1,6 @@
1/* vi: set sw=4 ts=4: */ 1/* vi: set sw=4 ts=4: */
2/* 2/*
3 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. 3 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
4 */ 4 */
5#include "common.h" 5#include "common.h"
6#include "dhcpd.h" 6#include "dhcpd.h"
diff --git a/networking/udhcp/files.c b/networking/udhcp/files.c
index ff63111c9..f5348f658 100644
--- a/networking/udhcp/files.c
+++ b/networking/udhcp/files.c
@@ -4,7 +4,7 @@
4 * 4 *
5 * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001 5 * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001
6 * 6 *
7 * Licensed under GPLv2, see file LICENSE in this tarball for details. 7 * Licensed under GPLv2, see file LICENSE in this source tree.
8 */ 8 */
9#include <netinet/ether.h> 9#include <netinet/ether.h>
10 10
diff --git a/networking/udhcp/leases.c b/networking/udhcp/leases.c
index fad71ec6c..7aeb37bae 100644
--- a/networking/udhcp/leases.c
+++ b/networking/udhcp/leases.c
@@ -2,7 +2,7 @@
2/* 2/*
3 * Russ Dill <Russ.Dill@asu.edu> July 2001 3 * Russ Dill <Russ.Dill@asu.edu> July 2001
4 * 4 *
5 * Licensed under GPLv2, see file LICENSE in this tarball for details. 5 * Licensed under GPLv2, see file LICENSE in this source tree.
6 */ 6 */
7#include "common.h" 7#include "common.h"
8#include "dhcpd.h" 8#include "dhcpd.h"
diff --git a/networking/udhcp/packet.c b/networking/udhcp/packet.c
index 4badc9cbc..d8f9c5daa 100644
--- a/networking/udhcp/packet.c
+++ b/networking/udhcp/packet.c
@@ -4,7 +4,7 @@
4 * 4 *
5 * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001 5 * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001
6 * 6 *
7 * Licensed under GPLv2, see file LICENSE in this tarball for details. 7 * Licensed under GPLv2, see file LICENSE in this source tree.
8 */ 8 */
9#include <netinet/in.h> 9#include <netinet/in.h>
10#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 b334a5888..f4a24ab62 100644
--- a/networking/udhcp/static_leases.c
+++ b/networking/udhcp/static_leases.c
@@ -4,7 +4,7 @@
4 * 4 *
5 * Wade Berrier <wberrier@myrealbox.com> September 2004 5 * Wade Berrier <wberrier@myrealbox.com> September 2004
6 * 6 *
7 * Licensed under GPLv2, see file LICENSE in this tarball for details. 7 * Licensed under GPLv2, see file LICENSE in this source tree.
8 */ 8 */
9#include "common.h" 9#include "common.h"
10#include "dhcpd.h" 10#include "dhcpd.h"