Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/oscar/oscar.c

    r536dfa1 raf496d8  
    378378                    icq ? AIM_DEFAULT_LOGIN_SERVER_ICQ
    379379                        : AIM_DEFAULT_LOGIN_SERVER_AIM, set_eval_account, acc);
    380         s->flags |= ACC_SET_NOSAVE | ACC_SET_OFFLINE_ONLY;
     380        s->flags |= SET_NOSAVE | ACC_SET_OFFLINE_ONLY;
    381381       
    382382        if (icq) {
     
    981981               
    982982                if (args->icbmflags & AIM_IMFLAGS_UNICODE)
    983                         src = "UNICODEBIG";
     983                        src = "UCS-2BE";
    984984                else
    985985                        src = "ISO8859-1";
     
    17691769                                args.flags |= AIM_IMFLAGS_ISO_8859_1;
    17701770                                len = ret;
    1771                         } else if ((ret = do_iconv("UTF-8", "UNICODEBIG", message, s, len, BUF_LONG)) >= 0) {
     1771                        } else if ((ret = do_iconv("UTF-8", "UCS-2BE", message, s, len, BUF_LONG)) >= 0) {
    17721772                                args.flags |= AIM_IMFLAGS_UNICODE;
    17731773                                len = ret;
     
    24062406                        flags |= AIM_CHATFLAGS_ISO_8859_1;
    24072407                        len = ret;
    2408                 } else if ((ret = do_iconv("UTF-8", "UNICODEBIG", message, s, len, BUF_LONG)) >= 0) {
     2408                } else if ((ret = do_iconv("UTF-8", "UCS-2BE", message, s, len, BUF_LONG)) >= 0) {
    24092409                        flags |= AIM_CHATFLAGS_UNICODE;
    24102410                        len = ret;
Note: See TracChangeset for help on using the changeset viewer.