diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2008-06-22 20:21:06 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2008-06-22 20:21:06 +0100 |
commit | 89d736a169cbff4520dcbb475aa7269b2cf4b837 (patch) | |
tree | a7f87443df902564a512511ea6436a925a4d9688 /protocols/jabber/jabber.h | |
parent | fab3d2d497e2819c142859a3698e85372e58df14 (diff) |
From the department of over-engineering, now cached packet IDs are full
MD5 hashes instead of a known MD5 hash with a number. Just to make it
harder to confuse BitlBee by sending it faked responses to packets.
Diffstat (limited to 'protocols/jabber/jabber.h')
-rw-r--r-- | protocols/jabber/jabber.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/jabber/jabber.h b/protocols/jabber/jabber.h index 023cf0f9..904bf0c4 100644 --- a/protocols/jabber/jabber.h +++ b/protocols/jabber/jabber.h @@ -85,7 +85,7 @@ struct jabber_data struct jabber_away_state *away_state; char *away_message; - char *cached_id_prefix; + md5_state_t cached_id_prefix; GHashTable *node_cache; GHashTable *buddies; }; |