diff options
Diffstat (limited to 'src/schema.c')
-rw-r--r-- | src/schema.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/schema.c b/src/schema.c index 56d52ba..d31046e 100644 --- a/src/schema.c +++ b/src/schema.c @@ -255,13 +255,11 @@ int og_dbi_schema_update(void) { int version, i, err; struct og_dbi *dbi; - const char *msglog; dbi = og_dbi_open(&ogconfig.db); if (!dbi) { - dbi_conn_error(dbi->conn, &msglog); - syslog(LOG_ERR, "failed to query database (%s:%d) %s\n", - __func__, __LINE__, msglog); + syslog(LOG_ERR, "cannot open a database connection (%s:%d)\n", + __func__, __LINE__); return -1; } |