# HG changeset patch # User Luke Schierer # Date 1052282192 0 # Node ID 141404465d38cd54c697b8c7e1d443dd46bc0075 # Parent 633067e155f93980e0a724d9675db184a0dc0c2d [gaim-migrate @ 5698] Paul A (darkrain) writes: " The new sanity-checking code in serv_set_away makes it impossible to return from away in some cases (when the state is GAIM_AWAY_CUSTOM) This patch fixes the problem." since i hit this bug, fixing it is a good thing ;-) committer: Tailor Script diff -r 633067e155f9 -r 141404465d38 src/server.c --- a/src/server.c Wed May 07 03:41:24 2003 +0000 +++ b/src/server.c Wed May 07 04:36:32 2003 +0000 @@ -295,6 +295,7 @@ GaimPluginProtocolInfo *prpl_info = NULL; if (gc->away_state != NULL && state != NULL && + strcmp(gc->away_state, GAIM_AWAY_CUSTOM) && !strcmp(gc->away_state, state)) { return;