Changeset 193dc74 for protocols/msn/ns.c


Ignore:
Timestamp:
2010-08-14T16:16:52Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
6ddb223
Parents:
e5854a8
Message:

Responses to add requests work now.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/ns.c

    re5854a8 r193dc74  
    264264                {
    265265                        char buf[1024];
    266                         char *fn_raw = set_getstr( &ic->acc->set, "display_name" );
     266                        char *fn_raw;
    267267                        char *fn;
    268268                       
    269                         if( fn_raw == NULL )
     269                        if( ic->flags & OPT_LOGGED_IN )
     270                                return 1;
     271                       
     272                        if( ( fn_raw = set_getstr( &ic->acc->set, "display_name" ) ) == NULL )
    270273                                fn_raw = ic->acc->user;
    271274                        fn = g_malloc( strlen( fn_raw ) * 3 + 1 );
Note: See TracChangeset for help on using the changeset viewer.