summaryrefslogtreecommitdiffstats
path: root/src/libtdeldap.cpp
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-02 12:57:35 +0900
commit6933039a32b176e1b209bbf0df441f38720f55bf (patch)
tree2c725904c50621ccccd1f33b740cc9da575487f0 /src/libtdeldap.cpp
parent7dfe8c376b0c793ed2f0b489a33bb768bb2c8840 (diff)
downloadlibtdeldap-6933039a32b176e1b209bbf0df441f38720f55bf.tar.gz
libtdeldap-6933039a32b176e1b209bbf0df441f38720f55bf.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/libtdeldap.cpp')
-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];