From: Kern Sibbald Date: Wed, 1 May 2019 08:29:35 +0000 (+0200) Subject: Change mysql my_bool to bool as it was removed from mysql X-Git-Tag: Release-9.4.3~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00b72432b31c2fe13b3477f287e3b5292d056ece;p=thirdparty%2Fbacula.git Change mysql my_bool to bool as it was removed from mysql --- diff --git a/bacula/src/cats/mysql.c b/bacula/src/cats/mysql.c index ca9c60952..fc73dc62b 100644 --- a/bacula/src/cats/mysql.c +++ b/bacula/src/cats/mysql.c @@ -1,7 +1,7 @@ /* Bacula(R) - The Network Backup Solution - Copyright (C) 2000-2017 Kern Sibbald + Copyright (C) 2000-2018 Kern Sibbald The original author of Bacula is Kern Sibbald, with contributions from many others, a complete list can be found in the file AUTHORS. @@ -198,7 +198,7 @@ bool BDB_MYSQL::bdb_open_database(JCR *jcr) BDB_MYSQL *mdb = this; bool retval = false; int errstat; - my_bool reconnect = 1; + bool reconnect = true; P(mutex); if (mdb->m_connected) {