From: Jonathan McDowell Date: Mon, 19 Jun 2006 21:42:07 +0000 (+0000) Subject: Try to load backends from current dir if none specified. X-Git-Tag: 0.3.3~11 X-Git-Url: http://the.earth.li/gitweb/?p=onak.git;a=commitdiff_plain;h=3b764b8e96bfcd76f36a76b58ac8ce812cff6ec1 Try to load backends from current dir if none specified. If we don't specify a directory for the backends in the config file then try to load them from the current directory. --- diff --git a/keydb_dynamic.c b/keydb_dynamic.c index 68ee449..6907144 100644 --- a/keydb_dynamic.c +++ b/keydb_dynamic.c @@ -46,11 +46,11 @@ bool load_backend(void) if (config.backends_dir == NULL) { soname = malloc(strlen(config.db_backend) - + strlen("/libkeydb_") + + strlen("./libkeydb_") + strlen(".so") + 1); - sprintf(soname, "libkeydb_%s.so", config.db_backend); + sprintf(soname, "./libkeydb_%s.so", config.db_backend); } else { soname = malloc(strlen(config.db_backend) + strlen("/libkeydb_")