diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2009-06-18 00:17:15 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2009-06-18 00:17:15 +0100 |
commit | b9369b55c99246a8feaee0ad24367044d92fa55d (patch) | |
tree | ebf68e573a7fd1c8cd83aeba7bf652eca47729d4 | |
parent | 19176513584bf26fa69a8a946982d9c521038a17 (diff) |
Fixed compatibility with AIM mobile messages. Should work according to
reports in bug #88 (where this patch comes from) and #bitlbee. Not sure
about side effects, one way to find out...
-rw-r--r-- | protocols/oscar/aim.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/protocols/oscar/aim.h b/protocols/oscar/aim.h index 9516996c..d1fc602a 100644 --- a/protocols/oscar/aim.h +++ b/protocols/oscar/aim.h @@ -143,6 +143,17 @@ struct client_info_s { "en", \ } +#define AIM_CLIENTINFO_KNOWNGOOD_5_1_3036 { \ + "AOL Instant Messenger, version 5.1.3036/WIN32", \ + 0x0109, \ + 0x0005, \ + 0x0001, \ + 0x0000, \ + 0x0bdc, \ + "us", \ + "en", \ +} + /* * I would make 4.1.2010 the default, but they seem to have found * an alternate way of breaking that one. @@ -151,7 +162,7 @@ struct client_info_s { * memory test, which may require you to have a WinAIM binary laying * around. (see login.c::memrequest()) */ -#define AIM_CLIENTINFO_KNOWNGOOD AIM_CLIENTINFO_KNOWNGOOD_3_5_1670 +#define AIM_CLIENTINFO_KNOWNGOOD AIM_CLIENTINFO_KNOWNGOOD_5_1_3036 #ifndef TRUE #define TRUE 1 |