Index: gtkaccount.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/gtkaccount.c,v retrieving revision 1.111 retrieving revision 1.112 diff -u -u -r1.111 -r1.112 --- gtkaccount.c 10 Jan 2004 04:04:56 -0000 1.111 +++ gtkaccount.c 13 Jan 2004 00:02:34 -0000 1.112 @@ -647,7 +647,7 @@ switch (gaim_account_option_get_type(option)) { case GAIM_PREF_BOOLEAN: - if (account == NULL || !strcmp(gaim_account_get_protocol_id(account), dialog->protocol_id)) { + if (account == NULL || strcmp(gaim_account_get_protocol_id(account), dialog->protocol_id)) { bool_value = gaim_account_option_get_default_bool(option); } else { bool_value = gaim_account_get_bool(account, @@ -670,7 +670,7 @@ break; case GAIM_PREF_INT: - if (account == NULL || !strcmp(gaim_account_get_protocol_id(account), dialog->protocol_id)) { + if (account == NULL || strcmp(gaim_account_get_protocol_id(account), dialog->protocol_id)) { int_value = gaim_account_option_get_default_int(option); } else { int_value = gaim_account_get_int(account, @@ -696,7 +696,7 @@ break; case GAIM_PREF_STRING: - if (account == NULL || !strcmp(gaim_account_get_protocol_id(account), dialog->protocol_id)) { + if (account == NULL || strcmp(gaim_account_get_protocol_id(account), dialog->protocol_id)) { str_value = gaim_account_option_get_default_string(option); } else { str_value = gaim_account_get_string(account,