diff options
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/MSN/src/msn_lists.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/MSN/src/msn_lists.cpp b/protocols/MSN/src/msn_lists.cpp index ad94802bb7..6f7b6384fd 100644 --- a/protocols/MSN/src/msn_lists.cpp +++ b/protocols/MSN/src/msn_lists.cpp @@ -306,6 +306,7 @@ void CMsnProto::MSN_CreateContList(void) cxml.AppendFormat("<c n=\"%s\" t=\"%d\"><s l=\"%d\" n=\"PE\"/><s l=\"%d\" n=\"IM\"/><s l=\"%d\" n=\"SKP\"/><s l=\"%d\" n=\"PUB\"/></c>", C.email, C.netId, list, list, list, list);
used[j] = true;
}
+ /* Seems to be unused in Skype and causing errors
else if (dom != NULL && lastds != NULL && _stricmp(lastds, dom) == 0) {
if (newdom) {
cxml.AppendFormat("<d n=\"%s\">", lastds + 1);
@@ -317,6 +318,7 @@ void CMsnProto::MSN_CreateContList(void) *(char*)dom = '@';
used[j] = true;
}
+ */
}
if (!newdom) cxml.Append(lastds ? "</d>" : "</skp>");
}
|