Fix libtdekrb FTBFS on newer TDE versions

master
Timothy Pearson 8 months ago
parent c1b1bef77e
commit f04fc7aa71

@ -1 +1 @@
Subproject commit 2ba4c0d451dc234a89ea164ec10e4393008a7cc1
Subproject commit 9e0d473a4d6a27fdd3b91e86e1a6358ac233290a

@ -1 +1 @@
Subproject commit a2fbe3aa43f55981b951b373e2fd10dfde3b5258
Subproject commit e1b441631c31d8ab9269bd44d1a992af6424ccdd

@ -1089,7 +1089,7 @@ int TDEKerberosClientSocket::initializeKerberosInterface() {
m_krbInitState = 0;
if (!kerberosInitLoopTimer) {
kerberosInitLoopTimer = new TQTimer();
connect(kerberosInitLoopTimer, SIGNAL(timeout()), this, SLOT(continueKerberosInitialization()));
connect(kerberosInitLoopTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(continueKerberosInitialization()));
}
if (kerberosInitLoopTimer) kerberosInitLoopTimer->start(0, TRUE);

@ -31,7 +31,7 @@ class SASLDataPrivate;
class TDEKerberosClientSocket : public TQSocket
{
Q_OBJECT
TQ_OBJECT
public:
enum KerberosStatus {
@ -129,4 +129,4 @@ class TDEKerberosClientSocket : public TQSocket
int m_krbInitServerLast;
};
#endif // TDEKRBCLIENTSOCKET_H
#endif // TDEKRBCLIENTSOCKET_H

@ -1069,7 +1069,7 @@ int TDEKerberosServerSocket::initializeKerberosInterface() {
m_krbInitState = 0;
if (!kerberosInitLoopTimer) {
kerberosInitLoopTimer = new TQTimer();
connect(kerberosInitLoopTimer, SIGNAL(timeout()), this, SLOT(continueKerberosInitialization()));
connect(kerberosInitLoopTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(continueKerberosInitialization()));
}
if (kerberosInitLoopTimer) kerberosInitLoopTimer->start(0, TRUE);

@ -30,7 +30,7 @@ class SASLDataPrivate;
class TDEKerberosServerSocket : public TQSocket
{
Q_OBJECT
TQ_OBJECT
public:
enum KerberosStatus {
@ -127,4 +127,4 @@ class TDEKerberosServerSocket : public TQSocket
const char *m_krbInitData;
};
#endif // TDEKRBSERVERSOCKET_H
#endif // TDEKRBSERVERSOCKET_H

Loading…
Cancel
Save