diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-16 20:14:46 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-16 20:14:46 +0200 |
commit | 0ef64bdb40c54681e8dd5ab8df42ac88e4ab1d4a (patch) | |
tree | d8a71a3f044857bd36569f535815002367389b29 /archival/bbunzip.c | |
parent | 0d555fc951fa09b2f7efb4b445a468a4bcc262f1 (diff) | |
download | busybox-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 'archival/bbunzip.c')
-rw-r--r-- | archival/bbunzip.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/archival/bbunzip.c b/archival/bbunzip.c index c1259ac46..787f4124d 100644 --- a/archival/bbunzip.c +++ b/archival/bbunzip.c | |||
@@ -1,8 +1,8 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* | 2 | /* |
3 | * Common code for gunzip-like applets | 3 | * Common code for gunzip-like applets |
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 | #include "libbb.h" | 7 | #include "libbb.h" |
8 | #include "unarchive.h" | 8 | #include "unarchive.h" |
@@ -165,7 +165,7 @@ char* FAST_FUNC make_new_name_generic(char *filename, const char *expected_ext) | |||
165 | /* | 165 | /* |
166 | * Uncompress applet for busybox (c) 2002 Glenn McGrath | 166 | * Uncompress applet for busybox (c) 2002 Glenn McGrath |
167 | * | 167 | * |
168 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 168 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
169 | */ | 169 | */ |
170 | #if ENABLE_UNCOMPRESS | 170 | #if ENABLE_UNCOMPRESS |
171 | static | 171 | static |
@@ -206,7 +206,7 @@ int uncompress_main(int argc UNUSED_PARAM, char **argv) | |||
206 | * General cleanup to better adhere to the style guide and make use of standard | 206 | * General cleanup to better adhere to the style guide and make use of standard |
207 | * busybox functions by Glenn McGrath | 207 | * busybox functions by Glenn McGrath |
208 | * | 208 | * |
209 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 209 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
210 | * | 210 | * |
211 | * gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface | 211 | * gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface |
212 | * Copyright (C) 1992-1993 Jean-loup Gailly | 212 | * Copyright (C) 1992-1993 Jean-loup Gailly |
@@ -302,7 +302,7 @@ int gunzip_main(int argc UNUSED_PARAM, char **argv) | |||
302 | * Modified for busybox by Glenn McGrath | 302 | * Modified for busybox by Glenn McGrath |
303 | * Added support output to stdout by Thomas Lundquist <thomasez@zelow.no> | 303 | * Added support output to stdout by Thomas Lundquist <thomasez@zelow.no> |
304 | * | 304 | * |
305 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 305 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
306 | */ | 306 | */ |
307 | //usage:#define bunzip2_trivial_usage | 307 | //usage:#define bunzip2_trivial_usage |
308 | //usage: "[OPTIONS] [FILE]..." | 308 | //usage: "[OPTIONS] [FILE]..." |
@@ -342,7 +342,7 @@ int bunzip2_main(int argc UNUSED_PARAM, char **argv) | |||
342 | * | 342 | * |
343 | * Based on bunzip.c from busybox | 343 | * Based on bunzip.c from busybox |
344 | * | 344 | * |
345 | * Licensed under GPL v2, see file LICENSE in this tarball for details. | 345 | * Licensed under GPLv2, see file LICENSE in this source tree. |
346 | */ | 346 | */ |
347 | #if ENABLE_UNLZMA | 347 | #if ENABLE_UNLZMA |
348 | static | 348 | static |