author | zautrix <zautrix> | 2005-02-24 00:28:59 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-02-24 00:28:59 (UTC) |
commit | 513496c67403deb04339cfc87143ed5554720e32 (patch) (unidiff) | |
tree | 87a0195e9875c539061ff70d18b05e4d50e96150 /libkdepim | |
parent | fd1e112db9e9d3dc656a540c05a87cbb4679939c (diff) | |
download | kdepimpi-513496c67403deb04339cfc87143ed5554720e32.zip kdepimpi-513496c67403deb04339cfc87143ed5554720e32.tar.gz kdepimpi-513496c67403deb04339cfc87143ed5554720e32.tar.bz2 |
fix
-rw-r--r-- | libkdepim/ksyncmanager.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libkdepim/ksyncmanager.cpp b/libkdepim/ksyncmanager.cpp index 5214fe7..d8ca3ba 100644 --- a/libkdepim/ksyncmanager.cpp +++ b/libkdepim/ksyncmanager.cpp | |||
@@ -1174,35 +1174,38 @@ void KServerSocket::readClient() | |||
1174 | if ( tokens[1] == mPassWord ) { | 1174 | if ( tokens[1] == mPassWord ) { |
1175 | //emit sendFile( mSocket ); | 1175 | //emit sendFile( mSocket ); |
1176 | bool ok = false; | 1176 | bool ok = false; |
1177 | QDateTime dt = KGlobal::locale()->readDateTime( tokens[2], KLocale::ISODate, &ok); | 1177 | QDateTime dt = KGlobal::locale()->readDateTime( tokens[2], KLocale::ISODate, &ok); |
1178 | if ( ok ) { | 1178 | if ( ok ) { |
1179 | KSyncManager::mRequestedSyncEvent = dt; | 1179 | KSyncManager::mRequestedSyncEvent = dt; |
1180 | } | 1180 | } |
1181 | else | 1181 | else |
1182 | KSyncManager::mRequestedSyncEvent = QDateTime(); | 1182 | KSyncManager::mRequestedSyncEvent = QDateTime(); |
1183 | send_file(); | 1183 | send_file(); |
1184 | } | 1184 | } |
1185 | else { | 1185 | else { |
1186 | error_connect(); | ||
1186 | KMessageBox::error( 0, i18n("Got send file request\nwith invalid password")); | 1187 | KMessageBox::error( 0, i18n("Got send file request\nwith invalid password")); |
1187 | //qDebug("password %s, invalid password %s ",mPassWord.latin1(), tokens[1].latin1() ); | 1188 | //qDebug("password %s, invalid password %s ",mPassWord.latin1(), tokens[1].latin1() ); |
1188 | } | 1189 | } |
1189 | } | 1190 | } |
1190 | if ( tokens[0] == "PUT" ) { | 1191 | if ( tokens[0] == "PUT" ) { |
1191 | if ( tokens[1] == mPassWord ) { | 1192 | if ( tokens[1] == mPassWord ) { |
1192 | //emit getFile( mSocket ); | 1193 | //emit getFile( mSocket ); |
1193 | blockRC = true; | 1194 | blockRC = true; |
1194 | get_file(); | 1195 | get_file(); |
1195 | } | 1196 | } |
1196 | else { | 1197 | else { |
1198 | error_connect(); | ||
1199 | end_connect(); | ||
1197 | KMessageBox::error( 0, i18n("Got receive file request\nwith invalid password")); | 1200 | KMessageBox::error( 0, i18n("Got receive file request\nwith invalid password")); |
1198 | //qDebug("password %s, invalid password %s ",mPassWord.latin1(), tokens[1].latin1() ); | 1201 | //qDebug("password %s, invalid password %s ",mPassWord.latin1(), tokens[1].latin1() ); |
1199 | } | 1202 | } |
1200 | } | 1203 | } |
1201 | if ( tokens[0] == "STOP" ) { | 1204 | if ( tokens[0] == "STOP" ) { |
1202 | //emit endConnect(); | 1205 | //emit endConnect(); |
1203 | end_connect(); | 1206 | end_connect(); |
1204 | } | 1207 | } |
1205 | } | 1208 | } |
1206 | } | 1209 | } |
1207 | void KServerSocket::error_connect() | 1210 | void KServerSocket::error_connect() |
1208 | { | 1211 | { |