]> git.sur5r.net Git - bacula/bacula/commitdiff
Revert "Fix stupid inverted logic"
authorKern Sibbald <kern@sibbald.com>
Sat, 10 Apr 2010 10:13:51 +0000 (12:13 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 10 Apr 2010 10:13:51 +0000 (12:13 +0200)
This reverts commit a84d3bb9d29accc4fa855ffc2e9be48814bbe2b8.

bacula/src/cats/dbi.c
bacula/src/cats/mysql.c
bacula/src/cats/postgresql.c
bacula/src/cats/sqlite.c

index b560110401bd40bd3b112584bfee2cee3db15c3c..ae994bf39abf275fa501028f89cb883ea2c7b9f7 100644 (file)
@@ -1272,7 +1272,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 3ee323c71eb8ff3147657afc77b8e88fc1fa0b95..dc3e97c35e77150842e454cfff448e5a3dc24c71 100644 (file)
@@ -378,7 +378,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 58a4ee94d6ac7b80f0be6607fd52ef535ac49cc8..9b208ab27beecb82162a9cf9d1c98ad4ec0132c7 100644 (file)
@@ -656,7 +656,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 e8b2f76f64ee377079cd791b39febba7745f9db6..df42efdef5f8c656138bcd80f74a18d8dc65227d 100644 (file)
@@ -496,7 +496,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;
    }