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 /libbb | |
parent | 30e5cf8875f757581256a4ec4f6935d1cb28a0fb (diff) |
Fix forgotten license comments
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/crc32.c | 2 | ||||
-rw-r--r-- | libbb/create_icmp6_socket.c | 2 | ||||
-rw-r--r-- | libbb/create_icmp_socket.c | 2 | ||||
-rw-r--r-- | libbb/crypt_make_salt.c | 1 | ||||
-rw-r--r-- | libbb/human_readable.c | 2 | ||||
-rw-r--r-- | libbb/inet_common.c | 2 | ||||
-rw-r--r-- | libbb/rtc.c | 2 | ||||
-rw-r--r-- | libbb/selinux_common.c | 2 | ||||
-rw-r--r-- | libbb/update_passwd.c | 2 | ||||
-rw-r--r-- | libbb/xatonum_template.c | 4 | ||||
-rw-r--r-- | libbb/xconnect.c | 1 | ||||
-rw-r--r-- | libbb/xgetcwd.c | 4 | ||||
-rw-r--r-- | libbb/xreadlink.c | 6 |
13 files changed, 28 insertions, 4 deletions
diff --git a/libbb/crc32.c b/libbb/crc32.c index 42079b9c5..36ac86042 100644 --- a/libbb/crc32.c +++ b/libbb/crc32.c @@ -12,6 +12,8 @@ * * endian = 1: big-endian * endian = 0: little-endian + * + * Licensed under GPLv2, see file LICENSE in this tarball for details. */ #include "libbb.h" diff --git a/libbb/create_icmp6_socket.c b/libbb/create_icmp6_socket.c index 20655170e..91e478ec8 100644 --- a/libbb/create_icmp6_socket.c +++ b/libbb/create_icmp6_socket.c @@ -4,6 +4,8 @@ * * create raw socket for icmp (IPv6 version) protocol * and drop root privileges if running setuid + * + * Licensed under GPLv2, see file LICENSE in this tarball for details. */ #include "libbb.h" diff --git a/libbb/create_icmp_socket.c b/libbb/create_icmp_socket.c index 1fa016ab8..d75f8452d 100644 --- a/libbb/create_icmp_socket.c +++ b/libbb/create_icmp_socket.c @@ -4,6 +4,8 @@ * * create raw socket for icmp protocol * and drop root privileges if running setuid + * + * Licensed under GPLv2, see file LICENSE in this tarball for details. */ #include "libbb.h" diff --git a/libbb/crypt_make_salt.c b/libbb/crypt_make_salt.c index 393eba5f9..14bb0ddc9 100644 --- a/libbb/crypt_make_salt.c +++ b/libbb/crypt_make_salt.c @@ -6,6 +6,7 @@ * * Lifted from loginutils/passwd.c by Thomas Lundquist <thomasez@zelow.no> * + * Licensed under GPLv2, see file LICENSE in this tarball for details. */ #include "libbb.h" diff --git a/libbb/human_readable.c b/libbb/human_readable.c index 61c856750..05e7d86ec 100644 --- a/libbb/human_readable.c +++ b/libbb/human_readable.c @@ -24,6 +24,8 @@ * * Some code to omit the decimal point and tenths digit is sketched out * and "#if 0"'d below. + * + * Licensed under GPLv2, see file LICENSE in this tarball for details. */ #include "libbb.h" diff --git a/libbb/inet_common.c b/libbb/inet_common.c index 966a021e5..fa4d8672f 100644 --- a/libbb/inet_common.c +++ b/libbb/inet_common.c @@ -5,7 +5,7 @@ * * Heavily modified by Manuel Novoa III Mar 12, 2001 * - * + * Licensed under GPLv2, see file LICENSE in this tarball for details. */ #include "libbb.h" diff --git a/libbb/rtc.c b/libbb/rtc.c index 222d977ca..51834f8f9 100644 --- a/libbb/rtc.c +++ b/libbb/rtc.c @@ -1,5 +1,7 @@ /* * Common RTC functions + * + * Licensed under GPLv2, see file LICENSE in this tarball for details. */ #include "libbb.h" diff --git a/libbb/selinux_common.c b/libbb/selinux_common.c index 5fdbe9d58..275a761d2 100644 --- a/libbb/selinux_common.c +++ b/libbb/selinux_common.c @@ -3,6 +3,8 @@ * -- common SELinux utility functions * * Copyright 2007 KaiGai Kohei <kaigai@kaigai.gr.jp> + * + * Licensed under GPLv2, see file LICENSE in this tarball for details. */ #include "libbb.h" #include <selinux/context.h> diff --git a/libbb/update_passwd.c b/libbb/update_passwd.c index 88bc28ca9..565dd3702 100644 --- a/libbb/update_passwd.c +++ b/libbb/update_passwd.c @@ -7,6 +7,8 @@ * /etc/shadow) for a given user and password. * * Moved from loginutils/passwd.c by Alexander Shishkin <virtuoso@slind.org> + * + * Licensed under GPLv2, see file LICENSE in this tarball for details. */ #include "libbb.h" diff --git a/libbb/xatonum_template.c b/libbb/xatonum_template.c index 2360ae88a..5e0bb59e6 100644 --- a/libbb/xatonum_template.c +++ b/libbb/xatonum_template.c @@ -1,4 +1,8 @@ /* + * + * Licensed under GPLv2, see file LICENSE in this tarball for details. + */ +/* You need to define the following (example): #define type long diff --git a/libbb/xconnect.c b/libbb/xconnect.c index d48c50339..5be83241b 100644 --- a/libbb/xconnect.c +++ b/libbb/xconnect.c @@ -4,6 +4,7 @@ * * Connect to host at port using address resolution from getaddrinfo * + * Licensed under GPLv2, see file LICENSE in this tarball for details. */ #include <netinet/in.h> diff --git a/libbb/xgetcwd.c b/libbb/xgetcwd.c index eefe1d660..10febe32d 100644 --- a/libbb/xgetcwd.c +++ b/libbb/xgetcwd.c @@ -5,7 +5,9 @@ * Written by David MacKenzie <djm@gnu.ai.mit.edu>. * * Special function for busybox written by Vladimir Oleynik <dzo@simtreas.ru> -*/ + * + * Licensed under GPLv2, see file LICENSE in this tarball for details. + */ #include "libbb.h" diff --git a/libbb/xreadlink.c b/libbb/xreadlink.c index 2cfc5751c..6bff4beae 100644 --- a/libbb/xreadlink.c +++ b/libbb/xreadlink.c @@ -1,7 +1,9 @@ /* vi: set sw=4 ts=4: */ /* - * xreadlink.c - safe implementation of readlink. - * Returns a NULL on failure... + * xreadlink.c - safe implementation of readlink. + * Returns a NULL on failure... + * + * Licensed under GPLv2, see file LICENSE in this tarball for details. */ #include "libbb.h" |