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];