Renamed roster autocomplete functions

This commit is contained in:
James Booth
2014-11-22 21:13:33 +00:00
parent c0420e9cfb
commit e8a65e3b68
5 changed files with 38 additions and 38 deletions

View File

@@ -264,7 +264,7 @@ _show_privacy(void)
if (current_recipient != NULL) {
char *recipient_jid = NULL;
char *found_contact = roster_find_contact(current_recipient);
char *found_contact = roster_contact_autocomplete(current_recipient);
if (found_contact != NULL) {
recipient_jid = roster_barejid_from_name(current_recipient);
free(found_contact);
@@ -338,7 +338,7 @@ _show_contact_presence(void)
if (prefs_get_boolean(PREF_PRESENCE) && current_recipient) {
char *recipient_jid = NULL;
char *found_contact = roster_find_contact(current_recipient);
char *found_contact = roster_contact_autocomplete(current_recipient);
if (found_contact) {
recipient_jid = roster_barejid_from_name(current_recipient);
free(found_contact);