- Timestamp:
- 2015-04-19T06:13:57Z (10 years ago)
- Branches:
- master
- Children:
- 71074ac
- Parents:
- 951aefd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/ns.c
r951aefd r2fe8297 303 303 /* CONGRATULATIONS */ 304 304 } else if (strcmp(cmd[0], "OUT") == 0) { 305 int allow_reconnect = TRUE; 306 307 if (cmd[1] && strcmp(cmd[1], "OTH") == 0) { 308 imcb_error(ic, "Someone else logged in with your account"); 309 allow_reconnect = FALSE; 310 } else if (cmd[1] && strcmp(cmd[1], "SSD") == 0) { 311 imcb_error(ic, "Terminating session because of server shutdown"); 312 } else { 313 imcb_error(ic, "Session terminated by remote server (%s)", 314 cmd[1] ? cmd[1] : "reason unknown)"); 315 } 316 317 imc_logout(ic, allow_reconnect); 305 imcb_error(ic, "Session terminated by remote server (%s)", cmd[1] ? cmd[1] : "reason unknown"); 306 imc_logout(ic, TRUE); 318 307 return(0); 319 308 } else if (strcmp(cmd[0], "GCF") == 0) {
Note: See TracChangeset
for help on using the changeset viewer.