From d173390d165cfce2a4a6333cfc7b4b350c9a405c Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Mon, 25 Jul 2011 12:49:08 +0200 Subject: edb-sqlite: Fixed a typos and copyright notices Signed-off-by: David Sommerseth (cherry picked from commit 331d3ff806f4d1b146d8599b1e226e7962f7d7b2) --- database/sqlite/edb-sqlite.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'database/sqlite/edb-sqlite.c') 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 * * 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; } -- cgit