]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix Win32 build after Joao's patch
authorKern Sibbald <kern@sibbald.com>
Mon, 29 Sep 2008 21:28:32 +0000 (21:28 +0000)
committerKern Sibbald <kern@sibbald.com>
Mon, 29 Sep 2008 21:28:32 +0000 (21:28 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7666 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/cats/sql.c
bacula/src/cats/sql_list.c

index f5e9baf4dc10bfffe607a0607be982270e2ecbd2..052d37af499c102cca72c494c3cfc16c522264ab 100644 (file)
@@ -50,7 +50,7 @@
 
 uint32_t bacula_db_version = 0;
 
-int db_type = -1;
+int db_type = -1;        /* SQL engine type index */
 
 /* Forward referenced subroutines */
 void print_dashes(B_DB *mdb);
@@ -710,7 +710,7 @@ bool db_open_batch_connexion(JCR *jcr, B_DB *mdb)
    int multi_db=false;
 
 #ifdef HAVE_BATCH_FILE_INSERT
-   multi_db=true;              /* we force a new connexion only if batch insert is enabled */
+   multi_db=true;               /* we force a new connexion only if batch insert is enabled */
 #endif
 
    if (!jcr->db_batch) {
index 33765bf87485bbcaee7dc6eb6e3c9f1def4adee0..9b70cb9646771e5c108b588e32e4139ddea0341e 100644 (file)
@@ -42,6 +42,8 @@
 #include "bacula.h"
 #include "cats.h"
 
+extern int db_type;
+
 #if    HAVE_SQLITE3 || HAVE_MYSQL || HAVE_SQLITE || HAVE_POSTGRESQL || HAVE_DBI
 
 /* -----------------------------------------------------------------------