Make ss_passwd_register slightly more efficient

This commit is contained in:
Denis Kenzior 2009-08-12 16:57:01 -05:00
parent 6f8acce8ec
commit 00482e341e
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ gboolean ss_passwd_register(struct ofono_modem *modem, const char *str,
if (!entry)
return FALSE;
modem->ss_passwd_list = g_slist_append(modem->ss_passwd_list, entry);
modem->ss_passwd_list = g_slist_prepend(modem->ss_passwd_list, entry);
return TRUE;
}