]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix stupid inverted logic
authorMarco van Wieringen <mvw@planets.elm.net>
Wed, 7 Apr 2010 18:08:43 +0000 (20:08 +0200)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 2 Aug 2010 14:49:45 +0000 (16:49 +0200)
bacula/src/cats/dbi.c
bacula/src/cats/mysql.c
bacula/src/cats/postgresql.c
bacula/src/cats/sqlite.c

index 5ed4359f4fdb084666862b627ed2392a6281d04e..a9d90ee744a293bab361e9dfd515af248dbd7021 100644 (file)
@@ -1280,7 +1280,7 @@ int my_dbi_sql_insert_id(B_DB *mdb, const char *query, const char *table_name)
    /*
     * First execute the insert query and then retrieve the currval.
     */
-   if (!my_dbi_query(mdb, query)) {
+   if (my_dbi_query(mdb, query)) {
       return 0;
    }
 
index f28341620465b75505aa3fc4f18929f6bfc4b1c0..5124dd2a90d2dcad234a445ec778c10aa7aa4d71 100644 (file)
@@ -385,7 +385,7 @@ int my_mysql_sql_insert_id(B_DB *mdb, const char *query, const char *table_name)
    /*
     * First execute the insert query and then retrieve the currval.
     */
-   if (!mysql_query(mdb->db, query)) {
+   if (mysql_query(mdb->db, query)) {
       return 0;
    }
 
index 69028f4dbd7db0cb3232b14ca2f2e0176f62fdce..74ced4d6e4af470c2ccd284ede3b6d2b7f3306ff 100644 (file)
@@ -662,7 +662,7 @@ int my_postgresql_insert_id(B_DB *mdb, const char *query, const char *table_name
    /*
     * First execute the insert query and then retrieve the currval.
     */
-   if (!my_postgresql_query(mdb, query)) {
+   if (my_postgresql_query(mdb, query)) {
       return 0;
    }
 
index ea7299498fd823af5fa01988f3e6ffeb0612d1b3..96e131c7a9b28c3172370c779c27c80a8ba92399 100644 (file)
@@ -505,7 +505,7 @@ int my_sqlite_sql_insert_id(B_DB *mdb, const char *query, const char *table_name
    /*
     * First execute the insert query and then retrieve the currval.
     */
-   if (!my_sqlite_query(mdb, query)) {
+   if (my_sqlite_query(mdb, query)) {
       return 0;
    }