Changeset be975f8


Ignore:
Timestamp:
2007-08-19T15:50:22Z (17 years ago)
Author:
VMiklos <vmiklos@…>
Branches:
master
Children:
b6d26ac
Parents:
9fd4241
Message:

add offline users, too

File:
1 edited

Legend:

Unmodified
Added
Removed
  • skype/skype.c

    r9fd4241 rbe975f8  
    8282                        else if(!strncmp(line, "USER ", 5))
    8383                        {
    84                                 // TODO we should add the buddy even if the status is offline
    85                                 if((ptr = strrchr(line, ' ')) && strcmp(++ptr, "OFFLINE") != 0)
    86                                 {
    87                                         char *user = strchr(line, ' ');
    88                                         ptr = strchr(++user, ' ');
    89                                         *ptr = '\0';
    90                                         ptr = g_strdup_printf("%s@skype.com", user);
    91                                         imcb_add_buddy(ic, ptr, NULL);
     84                                char *status = strrchr(line, ' ');
     85                                char *user = strchr(line, ' ');
     86                                ptr = strchr(++user, ' ');
     87                                *ptr = '\0';
     88                                ptr = g_strdup_printf("%s@skype.com", user);
     89                                imcb_add_buddy(ic, ptr, NULL);
     90                                // TODO online can be away
     91                                if(strcmp(++status, "OFFLINE") != 0)
    9292                                        imcb_buddy_status(ic, ptr, OPT_LOGGED_IN, NULL, NULL);
    93                                 }
     93                                g_free(ptr);
    9494                        }
    9595                        lineptr++;
Note: See TracChangeset for help on using the changeset viewer.