src/connection.c

changeset 11698
afbf0d8bdacf
parent 11562
58d047d8e724
child 11837
2f1206084fef
--- a/src/connection.c	Thu Oct 20 03:48:22 2005 +0000
+++ b/src/connection.c	Thu Oct 20 04:04:06 2005 +0000
@@ -280,8 +280,8 @@
 		/* Set the time the account came online */
 		time(&gc->login_time);
 
-		if (gaim_prefs_get_bool("/core/logging/log_system") &&
-		   gaim_prefs_get_bool("/core/logging/log_own_states")){
+		if (gaim_prefs_get_bool("/core/logging/log_system"))
+		{
 			GaimLog *log = gaim_account_get_log(account);
 			char *msg = g_strdup_printf("+++ %s signed on",
 										gaim_account_get_username(account));
@@ -328,8 +328,8 @@
 	else if (gc->state == GAIM_DISCONNECTED) {
 		GaimAccount *account = gaim_connection_get_account(gc);
 
-		if(gaim_prefs_get_bool("/core/logging/log_system") &&
-		   gaim_prefs_get_bool("/core/logging/log_own_states")){
+		if (gaim_prefs_get_bool("/core/logging/log_system"))
+		{
 			GaimLog *log = gaim_account_get_log(account);
 			char *msg = g_strdup_printf("+++ %s signed off",
 										gaim_account_get_username(account));

mercurial