]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix typo
authorMarco van Wieringen <mvw@planets.elm.net>
Mon, 5 Apr 2010 14:28:09 +0000 (16:28 +0200)
committerMarco van Wieringen <mvw@planets.elm.net>
Fri, 9 Apr 2010 11:34:59 +0000 (13:34 +0200)
bacula/src/cats/ingres.c

index 2a450427e791ad7331cfeab675443b485239eadb..3553f37953c352a6e821a0b4d06357d75ea604d7 100755 (executable)
@@ -554,14 +554,14 @@ int my_ingres_query(B_DB *mdb, const char *query)
    /*
     * See if we are getting a transaction start or end.
     */
-   if (strcasecmp(new_query, "BEGIN") != NULL) {
+   if (!strcasecmp(new_query, "BEGIN")) {
       /*
        * Start of a transaction.
        */
       Dmsg0(500,"my_ingres_query: Start of transaction\n");
       mdb->transaction = true;
       return 0;
-   } else if (strcasecmp(new_query, "COMMIT") != NULL) {
+   } else if (!strcasecmp(new_query, "COMMIT")) {
       /*
        * End of a transaction.
        */