summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2011-07-25 12:49:08 +0200
committerDavid Sommerseth <dazo@users.sourceforge.net>2011-07-25 12:51:50 +0200
commitd173390d165cfce2a4a6333cfc7b4b350c9a405c (patch)
tree7a97135de4508b6b3cab8df333fb4819334c2d9c
parentb0eec912a2d716dd1c9211b2867200d118d2c7d8 (diff)
downloadeurephia-release/1.0.tar.gz
eurephia-release/1.0.tar.xz
eurephia-release/1.0.zip
edb-sqlite: Fixed a typos and copyright noticesrelease/1.0
Signed-off-by: David Sommerseth <dazo@users.sourceforge.net> (cherry picked from commit 331d3ff806f4d1b146d8599b1e226e7962f7d7b2)
-rw-r--r--database/sqlite/edb-sqlite.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/database/sqlite/edb-sqlite.c b/database/sqlite/edb-sqlite.c
index 3860e63..1727eb3 100644
--- a/database/sqlite/edb-sqlite.c
+++ b/database/sqlite/edb-sqlite.c
@@ -1,7 +1,7 @@
/* edb-sqlite.c -- Main driver for eurephia authentication plugin for OpenVPN
* This is the SQLite database driver
*
- * GPLv2 only - Copyright (C) 2008 - 2010
+ * GPLv2 only - Copyright (C) 2008 - 2011
* David Sommerseth <dazo@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
@@ -86,7 +86,7 @@ static const eDBattempt_types_t eDBattempt_types[] = {
* @copydoc eDB_DriverVersion()
*/
const char *eDB_DriverVersion(void) {
- return "eurephiadb-sqlite (v"DRIVERVERSION") David Sommerseth 2008 (C) GPLv2";
+ return "edb-sqlite (v"DRIVERVERSION") David Sommerseth 2008-2011 (C) GPLv2";
}
@@ -142,7 +142,8 @@ int eDBconnect(eurephiaCTX *ctx, const int argc, const char **argv)
DEBUG(ctx, 20, "Function call: eDBconnect(ctx, %i, '%s')", argc, argv[0]);
if( (argc != 1) || (argv[0] == NULL) || (strlen(argv[0]) < 1) ) {
- eurephia_log(ctx, LOG_PANIC, 0, "Wrong parameters to eurephiadb-sqlite. Cannot open database.");
+ eurephia_log(ctx, LOG_PANIC, 0,
+ "Wrong parameters to edb-sqlite. Cannot open database.");
return 0;
}