summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-04-02 12:57:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-03 10:33:20 +0900
commit7988ec1a9089439e3c6364de2f27db7f7de11ec3 (patch)
treee27b2ea7dc1e04bb3d166f450bb58a8f3231e8fc
parent81b3ec1e1dfefd4728e54a7d22ef6daff48af67c (diff)
downloadlibtdeldap-7988ec1a.tar.gz
libtdeldap-7988ec1a.zip
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 6933039a32b176e1b209bbf0df441f38720f55bf)
-rw-r--r--src/libtdeldap.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libtdeldap.cpp b/src/libtdeldap.cpp
index 25f584d..117e27c 100644
--- a/src/libtdeldap.cpp
+++ b/src/libtdeldap.cpp
@@ -1592,7 +1592,7 @@ KerberosTicketInfoList LDAPManager::getKerberosTicketList(TQString cache, TQStri
}
else if (line.startsWith(KLIST_FLAGS_STRING)) {
line.remove(0, strlen(KLIST_FLAGS_STRING));
- TQStringList flags = TQStringList::split(",", line, FALSE);
+ TQStringList flags = TQStringList::split(",", line, false);
for (TQStringList::Iterator it = flags.begin(); it != flags.end(); ++it) {
if ((*it) == KLIST_KRB5_TICKET_RESERVED) {
ticket.flags = ticket.flags | KRB5_TICKET_RESERVED;
@@ -3491,7 +3491,7 @@ LDAPMasterReplicationInfo LDAPManager::parseLDAPMasterReplicationRecord(LDAPMast
if (ldap_field == "olcServerID") {
i=0;
while (vals[i] != NULL) {
- TQStringList serverIDMapping = TQStringList::split(" ", TQString(vals[i]->bv_val), FALSE);
+ TQStringList serverIDMapping = TQStringList::split(" ", TQString(vals[i]->bv_val), false);
LDAPMasterReplicationMapping mapping;
mapping.id = serverIDMapping[0].toInt();
mapping.fqdn = serverIDMapping[1];