]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix Ingres ID definition that caused seg fault
authorKern Sibbald <kern@sibbald.com>
Mon, 4 Jan 2010 13:06:55 +0000 (14:06 +0100)
committerKern Sibbald <kern@sibbald.com>
Mon, 4 Jan 2010 13:06:55 +0000 (14:06 +0100)
bacula/src/cats/cats.h

index 94b6532abeab5724da2b54f7a0890c0c4fb62292..0eeb45283963ea947ef2cddc4bd1c29a395cf170 100644 (file)
@@ -38,7 +38,6 @@
  * for the external world. This is control with
  * the define __SQL_C, which is defined only in sql.c
  *
- *    Version $Id: cats.h 8478 2009-02-18 20:11:55Z kerns $
  */
 
 /*
@@ -73,8 +72,8 @@ enum {
    SQL_TYPE_MYSQL      = 0,
    SQL_TYPE_POSTGRESQL = 1,
    SQL_TYPE_SQLITE     = 2,
-   SQL_TYPE_INGRES     = 3,
-   SQL_TYPE_SQLITE3
+   SQL_TYPE_SQLITE3    = 3,
+   SQL_TYPE_INGRES     = 4
 };
 
 
@@ -601,7 +600,7 @@ void               my_ingres_data_seek  (B_DB *mdb, int row);
 int                my_ingres_currval    (B_DB *mdb, const char *table_name);
 void               my_ingres_field_seek (B_DB *mdb, int row);
 INGRES_FIELD *     my_ingres_fetch_field(B_DB *mdb);
-void              my_ingres_close      (B_DB *mdb);
+void               my_ingres_close      (B_DB *mdb);
 
 int my_ingres_batch_start(JCR *jcr, B_DB *mdb);
 int my_ingres_batch_end(JCR *jcr, B_DB *mdb, const char *error);