From 4e4af1b0fe073fd2d43f4ea0d55f8deadbeb974d Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Sat, 14 Aug 2010 09:48:46 +0100 Subject: Remove some old Passport stuff, this is all in soap.[ch] now. --- protocols/msn/tables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'protocols/msn/tables.c') diff --git a/protocols/msn/tables.c b/protocols/msn/tables.c index 42b12aa9..fd7eca41 100644 --- a/protocols/msn/tables.c +++ b/protocols/msn/tables.c @@ -1,7 +1,7 @@ /********************************************************************\ * BitlBee -- An IRC to other IM-networks gateway * * * - * Copyright 2002-2004 Wilmer van der Gaast and others * + * Copyright 2002-2010 Wilmer van der Gaast and others * \********************************************************************/ /* MSN module - Some tables with useful data */ -- cgit v1.2.3 From 4fc95c57361193c5338d9916fd37cc8a939067cd Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Sat, 14 Aug 2010 22:33:33 +0100 Subject: Add/Remove support. --- protocols/msn/tables.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'protocols/msn/tables.c') diff --git a/protocols/msn/tables.c b/protocols/msn/tables.c index fd7eca41..191abe43 100644 --- a/protocols/msn/tables.c +++ b/protocols/msn/tables.c @@ -82,6 +82,8 @@ const struct msn_status_code msn_status_code_list[] = { 229, "Group name too long", 0 }, { 230, "Cannot remove that group", 0 }, { 231, "Invalid group", 0 }, + { 240, "ADL/RML command with corrupted payload", STATUS_FATAL }, + { 241, "ADL/RML command with invalid modification", STATUS_FATAL }, { 280, "Switchboard failed", STATUS_SB_FATAL }, { 281, "Transfer to switchboard failed", 0 }, -- cgit v1.2.3 From 00374acf3061c2c6c34fd2eda42e452211f7c4f9 Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Sat, 28 Aug 2010 14:22:50 +0200 Subject: Don't treat error 241 as fatal since it isn't - or at least not always. --- protocols/msn/tables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'protocols/msn/tables.c') diff --git a/protocols/msn/tables.c b/protocols/msn/tables.c index 191abe43..273d291e 100644 --- a/protocols/msn/tables.c +++ b/protocols/msn/tables.c @@ -83,7 +83,7 @@ const struct msn_status_code msn_status_code_list[] = { 230, "Cannot remove that group", 0 }, { 231, "Invalid group", 0 }, { 240, "ADL/RML command with corrupted payload", STATUS_FATAL }, - { 241, "ADL/RML command with invalid modification", STATUS_FATAL }, + { 241, "ADL/RML command with invalid modification", 0 }, { 280, "Switchboard failed", STATUS_SB_FATAL }, { 281, "Transfer to switchboard failed", 0 }, -- cgit v1.2.3