diff options
| author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-08-28 14:22:50 +0200 | 
|---|---|---|
| committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-08-28 14:22:50 +0200 | 
| commit | 00374acf3061c2c6c34fd2eda42e452211f7c4f9 (patch) | |
| tree | a42b66851aa100d962fc59c9d5f0b2e6df8cb879 | |
| parent | b78c4b9e3f3ec11b4ff560f579da764846793a00 (diff) | |
Don't treat error 241 as fatal since it isn't - or at least not always.
| -rw-r--r-- | protocols/msn/tables.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| 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 }, | 
