summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libuniso.c10
-rw-r--r--uniso.c7
2 files changed, 10 insertions, 7 deletions
diff --git a/libuniso.c b/libuniso.c
index fdc7dba..ef0b9ef 100644
--- a/libuniso.c
+++ b/libuniso.c
@@ -1,16 +1,16 @@
/* libuniso.c - Unpack ISO9660 File System from a stream
*
* Copyright (C) 2011 Timo Teräs <timo.teras@iki.fi>
+ * Copyright (C) 2011 Natanael Copa <ncopa@alpinelinux.org>
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 as published
- * by the Free Software Foundation. See http://www.gnu.org/ for details.
+ * under the terms of the GNU Lesser General Public License version 2.1 as
+ * published by the Free Software Foundation.
+ *
+ * See http://www.gnu.org/licenses/lgpl-2.1.html for details.
*/
-/* Compile with:
- * gcc -std=gnu99 -D_GNU_SOURCE -D_BSD_SOURCE -O2 uniso.c -o uniso */
-
/*
* TODO:
* - fix unaligned 16-bit accesses from iso headers (ARM / MIPS)
diff --git a/uniso.c b/uniso.c
index f84efcd..f5fd831 100644
--- a/uniso.c
+++ b/uniso.c
@@ -1,11 +1,14 @@
/* uniso.c - Unpack ISO9660 File System from a stream
*
+ * Copyright (C) 2011 Timo Teräs <timo.traas@iki.fi>
* Copyright (C) 2011 Natanael Copa <ncopa@alpinelinux.org>
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 as published
- * by the Free Software Foundation. See http://www.gnu.org/ for details.
+ * under the terms of the GNU Lesser General Public License version 2.1 as
+ * published by the Free Software Foundation.
+ *
+ * See http://www.gnu.org/licenses/lgpl-2.1.html for details.
*/
#include <limits.h>