Commit 8fc7a90a authored by Rusty Russell's avatar Rusty Russell

various: make the _info License: wording uniform for GPL variants.

GPL versions 2 and 3 both specifically mention "any later version" as
the phrase which allows the user to choose to upgrade the license.
Make sure we use that phrase, and make the format consistent across
modules.
parent 8de1e8a6
......@@ -35,7 +35,7 @@
* }
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -93,7 +93,7 @@
* return 0;
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -81,7 +81,7 @@
* return 0;
* }
*
* License: GPL (3 or any later version)
* License: GPL (v3 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -29,7 +29,7 @@
* return 0;
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -33,7 +33,7 @@
* return (char *)foo;
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -14,7 +14,7 @@
* since they have to use sizeof() which can only distiguish between types of
* different size.
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -21,7 +21,7 @@
* - IS_COMPILE_CONSTANT
* For using different tradeoffs for compiletime vs runtime evaluation.
*
* License: LGPL (3 or any later version)
* License: LGPL (v3 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*
* Example:
......
......@@ -46,7 +46,7 @@
* return 0;
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -67,7 +67,7 @@
* return 0;
* }
*
* License: LGPL (v2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -37,7 +37,7 @@
* exit(0);
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -10,7 +10,7 @@
* (ie. gcc), and not too bad (ie. a few compares and mallocs) for
* other compilers.
*
* License: LGPL (3 or any later version)
* License: LGPL (v3 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*
* Example:
......
......@@ -35,7 +35,7 @@
* return 0;
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -98,7 +98,7 @@
* return 0;
* }
*
* License: GPLv2 (or later)
* License: GPL (v2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -36,7 +36,7 @@
* return 0;
* }
*
* License: GPL (2 or any later version)
* License: GPL (v2 or any later version)
* Maintainer: Rusty Russell <rusty@rustcorp.com.au>
* Author: Jim Houston <jim.houston@ccur.com>
*/
......
......@@ -29,7 +29,7 @@
* return 0;
* }
*
* License: LGPL (v2 or later)
* License: LGPL (v2.1 or any later version)
* Author: Timothy B. Terriberry <tterribe@xiph.org>
*/
#include <string.h>
......
......@@ -11,7 +11,7 @@
* session, as well as a low level scsi library to create scsi cdb's
* and parse/unmarshall data-in structures.
*
* License: GPL (3 or any later version)
* License: GPL (v3 or any later version)
* Author: Ronnie Sahlberg <ronniesahlberg@gmail.com>
*/
int main(int argc, char *argv[])
......
......@@ -58,7 +58,7 @@
* return 0;
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -73,7 +73,7 @@
* return 0;
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -9,7 +9,7 @@
* help you annotate rare paths in your code for the convenience of the
* compiler and the reader.
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*
* Example:
......
......@@ -52,7 +52,7 @@
* return 0;
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -31,7 +31,7 @@
* return 0;
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
*/
int main(int argc, char *argv[])
{
......
......@@ -45,7 +45,7 @@
* return true;
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -24,7 +24,7 @@
* return 0;
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
*
*/
int main(int argc, char *argv[])
......
......@@ -49,7 +49,7 @@
* return 0;
* }
*
* License: GPL (3 or any later version)
* License: GPL (v3 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -27,7 +27,7 @@
* This code originates from ctdb, where talloc based trees keyed are
* used in several places.
*
* License: GPL (3 or any later version)
* License: GPL (v3 or any later version)
* Author: Ronnie Sahlberg <ronniesahlberg@gmail.com>
*
* Example:
......
......@@ -28,7 +28,7 @@
* return 0;
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -65,7 +65,7 @@
* return 0;
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -50,7 +50,7 @@
* return 0;
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -35,7 +35,7 @@
* return 0;
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -35,7 +35,7 @@
* return 0;
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -89,7 +89,7 @@
* return 0;
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
*/
int main(int argc, char *argv[])
{
......
......@@ -129,7 +129,7 @@
* return 0;
* }
*
* License: GPL (2 or any later version)
* License: GPL (v2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -40,7 +40,7 @@
* return 0;
* }
*
* License: LGPL (3 or any later version)
* License: LGPL (v3 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -63,7 +63,7 @@
*
* Author: Andrew Tridgell, Jeremy Allison, Rusty Russell
*
* License: LGPLv3 (or later)
* License: LGPL (v3 or any later version)
*
* Ccanlint:
* // valgrind breaks fcntl locks.
......
......@@ -64,7 +64,7 @@
*
* Author: Rusty Russell
*
* License: LGPLv3 (or later)
* License: LGPL (v3 or any later version)
*/
int main(int argc, char *argv[])
{
......
......@@ -135,7 +135,7 @@
* return 0;
* }
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
......@@ -37,7 +37,7 @@
* wwviaudio_cancel_all_sounds();
* wwviaduio_stop_portaudio();
*
* License: LGPL (2 or any later version)
* License: LGPL (v2.1 or any later version)
*
*/
int main(int argc, char *argv[])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment