summaryrefslogtreecommitdiffstats
path: root/database
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2008-08-08 07:17:50 +0200
committerDavid Sommerseth <dazo@users.sourceforge.net>2008-08-08 07:17:50 +0200
commitb3c5b6b9bc271126e57940311da0fb7f1d840d67 (patch)
treea32befd26ac316cf757df1ac314cf9a73c8c4f7d /database
parent570a71475f3bedd5f22063bf6b9e74ffd0983cd0 (diff)
downloadeurephia-b3c5b6b9bc271126e57940311da0fb7f1d840d67.tar.gz
eurephia-b3c5b6b9bc271126e57940311da0fb7f1d840d67.tar.xz
eurephia-b3c5b6b9bc271126e57940311da0fb7f1d840d67.zip
Added GPLv2 licence, updated *.[ch] files to include license, with exception of memwatch and sha1
Diffstat (limited to 'database')
-rw-r--r--database/eurephiadb-driver_template.c16
-rw-r--r--database/sqlite/eurephiadb-sqlite.c16
-rw-r--r--database/sqlite/sqlite.c14
-rw-r--r--database/sqlite/sqlite.h16
4 files changed, 61 insertions, 1 deletions
diff --git a/database/eurephiadb-driver_template.c b/database/eurephiadb-driver_template.c
index 884da2e..8f04268 100644
--- a/database/eurephiadb-driver_template.c
+++ b/database/eurephiadb-driver_template.c
@@ -1,5 +1,21 @@
/* eurephiadb-driver_template.c -- Skeleton for a eurephiaDB driver
*
+ * GPLv2 - 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
+ * as published by the Free Software Foundation; version 2
+ * of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
*/
#include <stdio.h>
diff --git a/database/sqlite/eurephiadb-sqlite.c b/database/sqlite/eurephiadb-sqlite.c
index ef95cb5..5594c14 100644
--- a/database/sqlite/eurephiadb-sqlite.c
+++ b/database/sqlite/eurephiadb-sqlite.c
@@ -1,6 +1,22 @@
/* eurephia-sqlite.c -- Main driver for eurephia authentication plugin for OpenVPN
* This is the SQLite database driver
*
+ * GPLv2 - 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
+ * as published by the Free Software Foundation; version 2
+ * of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
*/
#include <stdio.h>
diff --git a/database/sqlite/sqlite.c b/database/sqlite/sqlite.c
index 8c2e31e..9be9758 100644
--- a/database/sqlite/sqlite.c
+++ b/database/sqlite/sqlite.c
@@ -1,6 +1,20 @@
/* sqlite.c -- Generic functions to simplify SQLite3 queries
*
+ * GPLv2 - 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
+ * as published by the Free Software Foundation; version 2
+ * of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/database/sqlite/sqlite.h b/database/sqlite/sqlite.h
index 82b1464..8d221fd 100644
--- a/database/sqlite/sqlite.h
+++ b/database/sqlite/sqlite.h
@@ -1,6 +1,20 @@
-/* sqlite.c -- Generic functions to simplify SQLite3 queries
+/* sqlite.h -- Generic functions to simplify SQLite3 queries - data structures defined here
*
+ * GPLv2 - 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
+ * as published by the Free Software Foundation; version 2
+ * of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/