]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
whitespace
authorMatthew Newton <matthew-git@newtoncomputing.co.uk>
Mon, 28 Jun 2021 15:32:56 +0000 (16:32 +0100)
committerMatthew Newton <matthew-git@newtoncomputing.co.uk>
Mon, 28 Jun 2021 15:32:56 +0000 (16:32 +0100)
src/modules/rlm_sql/drivers/rlm_sql_sqlite/rlm_sql_sqlite.c

index 4156028c54118c9cd0a2e8246735b70dd0c41ed9..77b0579130bc7fccc19389dc07681a4b1b15af9d 100644 (file)
@@ -700,7 +700,7 @@ static int mod_instantiate(rlm_sql_config_t const *config, void *instance, CONF_
        }
 
        if (cf_pair_find(cs, "bootstrap") && !exists) {
-#  ifdef HAVE_SQLITE3_OPEN_V2
+#ifdef HAVE_SQLITE3_OPEN_V2
                int             status;
                int             ret;
                char const      *p;
@@ -730,13 +730,13 @@ static int mod_instantiate(rlm_sql_config_t const *config, void *instance, CONF_
 
                status = sqlite3_open_v2(inst->filename, &db, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, NULL);
                if (!db) {
-#    ifdef HAVE_SQLITE3_ERRSTR
+#  ifdef HAVE_SQLITE3_ERRSTR
                        ERROR("Failed creating opening/creating SQLite database: %s",
                              sqlite3_errstr(status));
-#    else
+#  else
                        ERROR("Failed creating opening/creating SQLite database, got code (%i)",
                              status);
-#    endif
+#  endif
 
                        goto unlink;
                }