From: Marco van Wieringen Date: Sat, 20 Feb 2010 21:06:03 +0000 (+0100) Subject: Fixed typo X-Git-Tag: Release-5.0.1~21 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=54547881208228a7c3dee67da6d5f98d120e6a4d;p=bacula%2Fbacula Fixed typo --- diff --git a/bacula/src/cats/ingres.c b/bacula/src/cats/ingres.c index 37e22481f3..4adb7b6c82 100755 --- a/bacula/src/cats/ingres.c +++ b/bacula/src/cats/ingres.c @@ -169,9 +169,9 @@ static int sql_check(B_DB *mdb) { int errorcode; - if ((errorcode = INGcheck()<0)) { + if ((errorcode = INGcheck()) < 0) { /* TODO: fill mdb->errmsg */ - Mmsg( mdb->errmsg, "Something went wrong - still searching!\n" ); + Mmsg(mdb->errmsg, "Something went wrong - still searching!\n"); } else if (errorcode > 0) { /* just a warning, proceed */ }