diff options
author | Michael Vetter <jubalh@iodoru.org> | 2019-12-18 15:44:59 +0100 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2019-12-18 15:44:59 +0100 |
commit | 9ac72980d192b716cfb549e0501b70a152811e62 (patch) | |
tree | 49220b08e6dc2c717ee17a90d77249cc36fb646d /src | |
parent | 53b92561cb1a815ca2f3622ad7ec4e27cf2c069d (diff) | |
download | profani-tty-9ac72980d192b716cfb549e0501b70a152811e62.tar.gz |
xep-0084: add test stub file
Diffstat (limited to 'src')
-rw-r--r-- | src/xmpp/avatar.c | 2 | ||||
-rw-r--r-- | src/xmpp/avatar.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/xmpp/avatar.c b/src/xmpp/avatar.c index 4d250462..fb69424c 100644 --- a/src/xmpp/avatar.c +++ b/src/xmpp/avatar.c @@ -76,7 +76,7 @@ avatar_pep_subscribe(void) //caps_add_feature(XMPP_FEATURE_USER_AVATAR_METADATA_NOTIFY); } -bool +gboolean avatar_get_by_nick(const char* nick) { caps_remove_feature(XMPP_FEATURE_USER_AVATAR_METADATA_NOTIFY); diff --git a/src/xmpp/avatar.h b/src/xmpp/avatar.h index 8f1415b6..37026542 100644 --- a/src/xmpp/avatar.h +++ b/src/xmpp/avatar.h @@ -39,6 +39,6 @@ #include <glib.h> void avatar_pep_subscribe(void); -bool avatar_get_by_nick(const char* nick); +gboolean avatar_get_by_nick(const char* nick); #endif |