aboutsummaryrefslogtreecommitdiff
path: root/loginutils
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 /loginutils
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 'loginutils')
-rw-r--r--loginutils/Kbuild.src2
-rw-r--r--loginutils/addgroup.c2
-rw-r--r--loginutils/adduser.c2
-rw-r--r--loginutils/chpasswd.c2
-rw-r--r--loginutils/cryptpw.c4
-rw-r--r--loginutils/deluser.c2
-rw-r--r--loginutils/getty.c2
-rw-r--r--loginutils/login.c2
-rw-r--r--loginutils/passwd.c2
-rw-r--r--loginutils/su.c4
-rw-r--r--loginutils/sulogin.c2
-rw-r--r--loginutils/vlock.c2
12 files changed, 14 insertions, 14 deletions
diff --git a/loginutils/Kbuild.src b/loginutils/Kbuild.src
index fd1ea06c1..ef416a76f 100644
--- a/loginutils/Kbuild.src
+++ b/loginutils/Kbuild.src
@@ -2,7 +2,7 @@
2# 2#
3# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org> 3# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
4# 4#
5# Licensed under the GPL v2, see the file LICENSE in this tarball. 5# Licensed under GPLv2, see file LICENSE in this source tree.
6 6
7lib-y:= 7lib-y:=
8 8
diff --git a/loginutils/addgroup.c b/loginutils/addgroup.c
index 78ca22585..5a0714501 100644
--- a/loginutils/addgroup.c
+++ b/loginutils/addgroup.c
@@ -6,7 +6,7 @@
6 * Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org> 6 * Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
7 * Copyright (C) 2007 by Tito Ragusa <farmatito@tiscali.it> 7 * Copyright (C) 2007 by Tito Ragusa <farmatito@tiscali.it>
8 * 8 *
9 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 9 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
10 * 10 *
11 */ 11 */
12#include "libbb.h" 12#include "libbb.h"
diff --git a/loginutils/adduser.c b/loginutils/adduser.c
index f5dca929f..1a9949e97 100644
--- a/loginutils/adduser.c
+++ b/loginutils/adduser.c
@@ -5,7 +5,7 @@
5 * Copyright (C) 1999 by Lineo, inc. and John Beppu 5 * Copyright (C) 1999 by Lineo, inc. and John Beppu
6 * Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org> 6 * Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
7 * 7 *
8 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. 8 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
9 */ 9 */
10#include "libbb.h" 10#include "libbb.h"
11 11
diff --git a/loginutils/chpasswd.c b/loginutils/chpasswd.c
index 181723169..101920c03 100644
--- a/loginutils/chpasswd.c
+++ b/loginutils/chpasswd.c
@@ -3,7 +3,7 @@
3 * chpasswd.c 3 * chpasswd.c
4 * 4 *
5 * Written for SLIND (from passwd.c) by Alexander Shishkin <virtuoso@slind.org> 5 * Written for SLIND (from passwd.c) by Alexander Shishkin <virtuoso@slind.org>
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#include "libbb.h" 8#include "libbb.h"
9 9
diff --git a/loginutils/cryptpw.c b/loginutils/cryptpw.c
index b44993f06..f32cbceb9 100644
--- a/loginutils/cryptpw.c
+++ b/loginutils/cryptpw.c
@@ -2,12 +2,12 @@
2/* 2/*
3 * cryptpw.c - output a crypt(3)ed password to stdout. 3 * cryptpw.c - output a crypt(3)ed password to stdout.
4 * 4 *
5 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 5 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
6 * 6 *
7 * Cooked from passwd.c by Thomas Lundquist <thomasez@zelow.no> 7 * Cooked from passwd.c by Thomas Lundquist <thomasez@zelow.no>
8 * mkpasswd compatible options added by Bernhard Reutner-Fischer 8 * mkpasswd compatible options added by Bernhard Reutner-Fischer
9 * 9 *
10 * Licensed under GPLv2, see file LICENSE in this tarball for details. 10 * Licensed under GPLv2, see file LICENSE in this source tree.
11 */ 11 */
12 12
13#include "libbb.h" 13#include "libbb.h"
diff --git a/loginutils/deluser.c b/loginutils/deluser.c
index 293e324b0..e234d6678 100644
--- a/loginutils/deluser.c
+++ b/loginutils/deluser.c
@@ -6,7 +6,7 @@
6 * Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org> 6 * Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
7 * Copyright (C) 2007 by Tito Ragusa <farmatito@tiscali.it> 7 * Copyright (C) 2007 by Tito Ragusa <farmatito@tiscali.it>
8 * 8 *
9 * Licensed under GPL version 2, see file LICENSE in this tarball for details. 9 * Licensed under GPLv2, see file LICENSE in this source tree.
10 * 10 *
11 */ 11 */
12#include "libbb.h" 12#include "libbb.h"
diff --git a/loginutils/getty.c b/loginutils/getty.c
index 7f04d33fb..c240803d6 100644
--- a/loginutils/getty.c
+++ b/loginutils/getty.c
@@ -12,7 +12,7 @@
12 * 1999-05-05 Thorsten Kranzkowski <dl8bcu@gmx.net> 12 * 1999-05-05 Thorsten Kranzkowski <dl8bcu@gmx.net>
13 * - enable hardware flow control before displaying /etc/issue 13 * - enable hardware flow control before displaying /etc/issue
14 * 14 *
15 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 15 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
16 */ 16 */
17 17
18#include "libbb.h" 18#include "libbb.h"
diff --git a/loginutils/login.c b/loginutils/login.c
index 10012486f..e104fbb93 100644
--- a/loginutils/login.c
+++ b/loginutils/login.c
@@ -1,6 +1,6 @@
1/* vi: set sw=4 ts=4: */ 1/* vi: set sw=4 ts=4: */
2/* 2/*
3 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 3 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
4 */ 4 */
5#include "libbb.h" 5#include "libbb.h"
6#include <syslog.h> 6#include <syslog.h>
diff --git a/loginutils/passwd.c b/loginutils/passwd.c
index b447af2f5..728e61867 100644
--- a/loginutils/passwd.c
+++ b/loginutils/passwd.c
@@ -1,6 +1,6 @@
1/* vi: set sw=4 ts=4: */ 1/* vi: set sw=4 ts=4: */
2/* 2/*
3 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 3 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
4 */ 4 */
5#include "libbb.h" 5#include "libbb.h"
6#include <syslog.h> 6#include <syslog.h>
diff --git a/loginutils/su.c b/loginutils/su.c
index 9bae37551..5bec4bc8b 100644
--- a/loginutils/su.c
+++ b/loginutils/su.c
@@ -1,8 +1,8 @@
1/* vi: set sw=4 ts=4: */ 1/* vi: set sw=4 ts=4: */
2/* 2/*
3 * Mini su implementation for busybox 3 * Mini su implementation for busybox
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
8#include "libbb.h" 8#include "libbb.h"
diff --git a/loginutils/sulogin.c b/loginutils/sulogin.c
index 3516013f1..307536721 100644
--- a/loginutils/sulogin.c
+++ b/loginutils/sulogin.c
@@ -2,7 +2,7 @@
2/* 2/*
3 * Mini sulogin implementation for busybox 3 * Mini sulogin implementation for busybox
4 * 4 *
5 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 5 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
6 */ 6 */
7 7
8#include "libbb.h" 8#include "libbb.h"
diff --git a/loginutils/vlock.c b/loginutils/vlock.c
index 59aeb54e8..216b317f1 100644
--- a/loginutils/vlock.c
+++ b/loginutils/vlock.c
@@ -5,7 +5,7 @@
5 * Copyright (C) 2000 by spoon <spoon@ix.netcom.com> 5 * Copyright (C) 2000 by spoon <spoon@ix.netcom.com>
6 * Written by spoon <spon@ix.netcom.com> 6 * Written by spoon <spon@ix.netcom.com>
7 * 7 *
8 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 8 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
9 */ 9 */
10 10
11/* Shoutz to Michael K. Johnson <johnsonm@redhat.com>, author of the 11/* Shoutz to Michael K. Johnson <johnsonm@redhat.com>, author of the