summaryrefslogtreecommitdiff
path: root/libpurple/group.c
diff options
context:
space:
mode:
authorElliott Sales de Andrade <qulogic@pidgin.im>2019-08-06 19:15:13 -0400
committerElliott Sales de Andrade <qulogic@pidgin.im>2019-08-06 19:15:13 -0400
commitc45493b564db124d927441339d4a6c39dff9e8b5 (patch)
treeda2468ef849538c1fd5dd55dd878f6e224b5e9a4 /libpurple/group.c
parenta74e0bc365c453598e99a7bfd94e4d27f21f7297 (diff)
downloadpidgin-c45493b564db124d927441339d4a6c39dff9e8b5.tar.gz
Rename *_GET_*_IFACE to more standard *_GET_IFACE.
Two sed's of `s/_GET_\([A-Za-z0-9_]\+\)_IFACE/_\1_GET_IFACE/g` and `s/\(PURPLE_PROTOCOL_IMPLEMENTS.\+\)_IFACE/\1/g`, plus a small fix in `PURPLE_PROTOCOL_IMPLEMENTS`.
Diffstat (limited to 'libpurple/group.c')
-rw-r--r--libpurple/group.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpurple/group.c b/libpurple/group.c
index d63ed5ca5d..abeefab6d6 100644
--- a/libpurple/group.c
+++ b/libpurple/group.c
@@ -207,7 +207,7 @@ void purple_group_set_name(PurpleGroup *source, const char *name) {
buddies = g_list_append(buddies, (PurpleBlistNode *)buddy);
}
- if(PURPLE_PROTOCOL_IMPLEMENTS(protocol, SERVER_IFACE, rename_group)) {
+ if(PURPLE_PROTOCOL_IMPLEMENTS(protocol, SERVER, rename_group)) {
purple_protocol_server_iface_rename_group(protocol, gc, old_name, source, buddies);
} else {
GList *cur, *groups = NULL;