diff options
author | dequis <dx@dxzone.com.ar> | 2015-12-30 02:22:47 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2015-12-30 02:22:47 -0300 |
commit | c0db0d3f565f35b26933e314b7d45cbe23440f5d (patch) | |
tree | 71af3e372af2611e84385e32e988bc766e0a73c6 /protocols/msn/ns.c | |
parent | cdd1ded568d435424776657fbde5152a00dd21b6 (diff) |
msn: Fix ADL/RML (add/remove from list) throwing server errors
Diffstat (limited to 'protocols/msn/ns.c')
-rw-r--r-- | protocols/msn/ns.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/msn/ns.c b/protocols/msn/ns.c index 3b2ae552..d577b4b9 100644 --- a/protocols/msn/ns.c +++ b/protocols/msn/ns.c @@ -285,6 +285,8 @@ int msn_ns_command(struct msn_data *md, char **cmd, int num_parts) } else if (num_parts >= 3) { md->msglen = atoi(cmd[2]); } + } else if (strcmp(cmd[0], "RML") == 0) { + /* Move along, nothing to see here */ } else if (strcmp(cmd[0], "CHL") == 0) { char *resp; int st; |