From 622fb9169d5c554d5f5c8ca42e978f133be5bb45 Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Fri, 28 Nov 2008 11:47:38 +0100 Subject: Added minimum API version check when loading database driver. --- plugin/eurephia.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugin') diff --git a/plugin/eurephia.c b/plugin/eurephia.c index 8dc01e2..4853591 100644 --- a/plugin/eurephia.c +++ b/plugin/eurephia.c @@ -170,7 +170,7 @@ eurephiaCTX *eurephiaInit(const char **argv) ctx->loglevel = loglvl; // Load the database driver - if( (error == 0) && eDBlink_init(ctx, dbi) ) { + if( (error == 0) && eDBlink_init(ctx, dbi, 1) ) { // Connect to the database if( !eDBconnect(ctx, dbargc, dbargv) ) { eurephia_log(ctx, LOG_PANIC, 0, "Could not connect to the database"); -- cgit