diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/xmpp/roster.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xmpp/roster.c b/src/xmpp/roster.c index 633f6700..adcd447c 100644 --- a/src/xmpp/roster.c +++ b/src/xmpp/roster.c @@ -213,6 +213,7 @@ roster_set_handler(xmpp_stanza_t *const stanza) Jid *my_jid = jid_create(connection_get_fulljid()); const char *from = xmpp_stanza_get_from(stanza); if (from && (strcmp(from, my_jid->barejid) != 0)) { + log_warning("Received alleged roster push from: %s", from); jid_destroy(my_jid); return; } |