# HG changeset patch # User Nathan Walp # Date 1055397247 0 # Node ID 5e685e42931e43bf1c394abb64322e7a87b4a0eb # Parent 6aa7651c7c15b161bf14bcb98199d3e65270808f [gaim-migrate @ 6270] make those log prefs work again committer: Tailor Script diff -r 6aa7651c7c15 -r 5e685e42931e src/log.c --- a/src/log.c Thu Jun 12 05:01:11 2003 +0000 +++ b/src/log.c Thu Jun 12 05:54:07 2003 +0000 @@ -290,8 +290,14 @@ account = gaim_connection_get_account(gc); - if (((why & OPT_LOG_MY_SIGNON) && - !gaim_prefs_get_bool("/gaim/gtk/logging/log_own_states"))) { + if ((why & OPT_LOG_MY_SIGNON && + !gaim_prefs_get_bool("/gaim/gtk/logging/log_own_states")) || + (why & OPT_LOG_BUDDY_SIGNON && + !gaim_prefs_get_bool("/gaim/gtk/logging/log_signon_signoff")) || + (why & OPT_LOG_BUDDY_IDLE && + !gaim_prefs_get_bool("/gaim/gtk/logging/log_idle_state")) || + (why & OPT_LOG_BUDDY_AWAY && + !gaim_prefs_get_bool("/gaim/gtk/logging/log_away_state"))) { return; }