Changeset af496d8
- Timestamp:
- 2013-05-06T15:13:49Z (12 years ago)
- Branches:
- master
- Children:
- a7e6ba9
- Parents:
- f539d6e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/oscar/oscar.c
rf539d6e raf496d8 981 981 982 982 if (args->icbmflags & AIM_IMFLAGS_UNICODE) 983 src = "U NICODEBIG";983 src = "UCS-2BE"; 984 984 else 985 985 src = "ISO8859-1"; … … 1769 1769 args.flags |= AIM_IMFLAGS_ISO_8859_1; 1770 1770 len = ret; 1771 } else if ((ret = do_iconv("UTF-8", "U NICODEBIG", message, s, len, BUF_LONG)) >= 0) {1771 } else if ((ret = do_iconv("UTF-8", "UCS-2BE", message, s, len, BUF_LONG)) >= 0) { 1772 1772 args.flags |= AIM_IMFLAGS_UNICODE; 1773 1773 len = ret; … … 2406 2406 flags |= AIM_CHATFLAGS_ISO_8859_1; 2407 2407 len = ret; 2408 } else if ((ret = do_iconv("UTF-8", "U NICODEBIG", message, s, len, BUF_LONG)) >= 0) {2408 } else if ((ret = do_iconv("UTF-8", "UCS-2BE", message, s, len, BUF_LONG)) >= 0) { 2409 2409 flags |= AIM_CHATFLAGS_UNICODE; 2410 2410 len = ret;
Note: See TracChangeset
for help on using the changeset viewer.