diff options
| author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-05-18 01:42:02 +0100 | 
|---|---|---|
| committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-05-18 01:42:02 +0100 | 
| commit | 31fc06fbb48b6217186ca441eb9b95add5f783ce (patch) | |
| tree | d8c3ba0d00a7847a1d37627e15fa5a1c211e7c52 /protocols | |
| parent | c96c72f16ea48ca769400ff91bd2eb434da19f6e (diff) | |
Suppress auto-reconnect when required (auth errors and concurrent logins
probably, not sure what sets the wants_to_die flag).
Diffstat (limited to 'protocols')
| -rw-r--r-- | protocols/purple/purple.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/protocols/purple/purple.c b/protocols/purple/purple.c index 2507bfc2..fee93b27 100644 --- a/protocols/purple/purple.c +++ b/protocols/purple/purple.c @@ -497,7 +497,7 @@ static void prplcb_conn_disconnected( PurpleConnection *gc )  	if( ic != NULL )  	{ -		imc_logout( ic, TRUE ); +		imc_logout( ic, !gc->wants_to_die );  	}  } | 
