diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2005-12-16 10:45:34 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2005-12-16 10:45:34 +0100 |
commit | 15832cc6c8475ae454a72a2a12f231fef852e886 (patch) | |
tree | dac0cc9acfdd337b556383f0646b85468d5bad6c /storage_text.c | |
parent | bf02a679c61b0f030ee8f2f01698699a7775f7d5 (diff) |
Added the ICQ and AIM protocol numbers to find_protocol_by_id in storage_text.c, because those numbers are used by old versions.
Diffstat (limited to 'storage_text.c')
-rw-r--r-- | storage_text.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/storage_text.c b/storage_text.c index ed32b73f..95a107be 100644 --- a/storage_text.c +++ b/storage_text.c @@ -33,7 +33,9 @@ static struct prpl *find_protocol_by_id(int id) { switch (id) { + case 0: return find_protocol("oscar"); case 1: return find_protocol("oscar"); + case 3: return find_protocol("oscar"); case 4: return find_protocol("msn"); case 2: return find_protocol("yahoo"); case 8: return find_protocol("jabber"); |