summaryrefslogtreecommitdiffstats
path: root/database
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2009-03-26 00:35:09 +0100
committerDavid Sommerseth <dazo@users.sourceforge.net>2009-03-26 00:35:09 +0100
commit0712bce6f387121e37501ec323e3da89ce4300c3 (patch)
treee477c4c4834ee2afec1d38096cb4b1c710889ce8 /database
parent74a1e62e59bd821f975c6e1cdebfb77c7b3a8ac4 (diff)
downloadeurephia-0712bce6f387121e37501ec323e3da89ce4300c3.tar.gz
eurephia-0712bce6f387121e37501ec323e3da89ce4300c3.tar.xz
eurephia-0712bce6f387121e37501ec323e3da89ce4300c3.zip
Made the licence explicit GPLv2 only
Diffstat (limited to 'database')
-rw-r--r--database/eurephiadb-driver_template.c2
-rw-r--r--database/eurephiadb.c2
-rw-r--r--database/eurephiadb.h3
-rw-r--r--database/eurephiadb_driver.h2
-rw-r--r--database/eurephiadb_mapping.c2
-rw-r--r--database/eurephiadb_mapping.h2
-rw-r--r--database/eurephiadb_struct.h2
-rw-r--r--database/sqlite/administration.c2
-rw-r--r--database/sqlite/edb-sqlite.c2
-rw-r--r--database/sqlite/fieldmapping.h2
-rw-r--r--database/sqlite/sql-schema.sql2
-rw-r--r--database/sqlite/sqlite.c2
-rw-r--r--database/sqlite/sqlite.h2
13 files changed, 14 insertions, 13 deletions
diff --git a/database/eurephiadb-driver_template.c b/database/eurephiadb-driver_template.c
index 956607d..be31ad3 100644
--- a/database/eurephiadb-driver_template.c
+++ b/database/eurephiadb-driver_template.c
@@ -10,7 +10,7 @@
*
*
*
- * GPLv2 - Copyright (C) 2008 David Sommerseth <dazo@users.sourceforge.net>
+ * GPLv2 only - Copyright (C) 2008 David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/database/eurephiadb.c b/database/eurephiadb.c
index 4192475..3b697dc 100644
--- a/database/eurephiadb.c
+++ b/database/eurephiadb.c
@@ -1,6 +1,6 @@
/* eurephiadb.c -- Loads and initialises the database driver
*
- * GPLv2 - Copyright (C) 2008, 2009
+ * GPLv2 only - Copyright (C) 2008, 2009
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/database/eurephiadb.h b/database/eurephiadb.h
index b2311d7..256783c 100644
--- a/database/eurephiadb.h
+++ b/database/eurephiadb.h
@@ -1,6 +1,7 @@
/* eurephiadb.h -- Database driver setup
*
- * GPLv2 - Copyright (C) 2008 David Sommerseth <dazo@users.sourceforge.net>
+ * GPLv2 only - Copyright (C) 2008
+ * David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/database/eurephiadb_driver.h b/database/eurephiadb_driver.h
index cfe6563..31040d8 100644
--- a/database/eurephiadb_driver.h
+++ b/database/eurephiadb_driver.h
@@ -1,6 +1,6 @@
/* eurephiadb_driver.h -- API provided by the database driver
*
- * GPLv2 - Copyright (C) 2008, 2009
+ * GPLv2 only - Copyright (C) 2008, 2009
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/database/eurephiadb_mapping.c b/database/eurephiadb_mapping.c
index 277c334..fb033c8 100644
--- a/database/eurephiadb_mapping.c
+++ b/database/eurephiadb_mapping.c
@@ -1,6 +1,6 @@
/* eurephiadb_common.c -- Common database functions, used by drivers
*
- * GPLv2 - Copyright (C) 2008, 2009
+ * GPLv2 only - Copyright (C) 2008, 2009
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/database/eurephiadb_mapping.h b/database/eurephiadb_mapping.h
index d203626..adbed4e 100644
--- a/database/eurephiadb_mapping.h
+++ b/database/eurephiadb_mapping.h
@@ -3,7 +3,7 @@
* to access specific database table fields
* through a unified API
*
- * GPLv2 - Copyright (C) 2008, 2009
+ * GPLv2 only - Copyright (C) 2008, 2009
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/database/eurephiadb_struct.h b/database/eurephiadb_struct.h
index ff44131..da45f4e 100644
--- a/database/eurephiadb_struct.h
+++ b/database/eurephiadb_struct.h
@@ -1,6 +1,6 @@
/* eurephiadb_struct.h -- Database connection struct
*
- * GPLv2 - Copyright (C) 2008
+ * GPLv2 only - Copyright (C) 2008
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/database/sqlite/administration.c b/database/sqlite/administration.c
index 9ffc521..ef2e621 100644
--- a/database/sqlite/administration.c
+++ b/database/sqlite/administration.c
@@ -1,6 +1,6 @@
/* administration.c -- Functions needed for administration tasks
*
- * GPLv2 - Copyright (C) 2008, 2009
+ * GPLv2 only - Copyright (C) 2008, 2009
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/database/sqlite/edb-sqlite.c b/database/sqlite/edb-sqlite.c
index 7170859..02d15e0 100644
--- a/database/sqlite/edb-sqlite.c
+++ b/database/sqlite/edb-sqlite.c
@@ -1,7 +1,7 @@
/* eurephia-sqlite.c -- Main driver for eurephia authentication plugin for OpenVPN
* This is the SQLite database driver
*
- * GPLv2 - Copyright (C) 2008, 2009
+ * GPLv2 only - Copyright (C) 2008, 2009
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/database/sqlite/fieldmapping.h b/database/sqlite/fieldmapping.h
index 6e72b17..86ae966 100644
--- a/database/sqlite/fieldmapping.h
+++ b/database/sqlite/fieldmapping.h
@@ -1,7 +1,7 @@
/* fieldmapping.h -- Contains mapping from internal eurephia field ID to
* SQLite3 specific field names per table
*
- * GPLv2 - Copyright (C) 2008, 2009
+ * GPLv2 only - Copyright (C) 2008, 2009
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/database/sqlite/sql-schema.sql b/database/sqlite/sql-schema.sql
index e6498f8..a6c3997 100644
--- a/database/sqlite/sql-schema.sql
+++ b/database/sqlite/sql-schema.sql
@@ -1,7 +1,7 @@
--
-- eurephia database schema for SQLite3
--
--- GPLv2 - Copyright 2008
+-- GPLv2 only - Copyright 2008
-- David Sommerseth
CREATE TABLE openvpn_certificates (
diff --git a/database/sqlite/sqlite.c b/database/sqlite/sqlite.c
index dfa7a0f..fce70ad 100644
--- a/database/sqlite/sqlite.c
+++ b/database/sqlite/sqlite.c
@@ -1,6 +1,6 @@
/* sqlite.c -- Generic functions to simplify SQLite3 queries
*
- * GPLv2 - Copyright (C) 2008, 2009
+ * GPLv2 only - Copyright (C) 2008, 2009
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
diff --git a/database/sqlite/sqlite.h b/database/sqlite/sqlite.h
index bfde65c..928fd10 100644
--- a/database/sqlite/sqlite.h
+++ b/database/sqlite/sqlite.h
@@ -1,6 +1,6 @@
/* sqlite.h -- Generic functions to simplify SQLite3 queries - data structures defined here
*
- * GPLv2 - Copyright (C) 2008, 2009
+ * GPLv2 only - Copyright (C) 2008, 2009
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or