Changeset a317ba6 for skype


Ignore:
Timestamp:
2008-03-31T00:20:33Z (16 years ago)
Author:
Miklos Vajna <vmiklos@…>
Branches:
master
Children:
e06f408
Parents:
c78476c
git-author:
Riskó Gergely <gergely@…> (31-03-08 00:20:33)
git-committer:
Miklos Vajna <vmiklos@…> (31-03-08 00:20:33)
Message:

skype_set_call(): allow calling the test girl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • skype/skype.c

    rc78476c ra317ba6  
    999999                user_t *u = user_find(acc->irc, value);
    10001000                /* We are starting a call */
    1001                 if(!u)
     1001                if(!u && strcmp(value, "echo123"))
    10021002                {
    10031003                        imcb_error(ic, "%s - no such nick", value);
    10041004                        return(value);
    10051005                }
    1006                 nick = g_strdup(u->handle);
     1006                if(!strcmp(value, "echo123"))
     1007                        nick = g_strdup("echo123");
     1008                else
     1009                        nick = g_strdup(u->handle);
    10071010                ptr = strchr(nick, '@');
    10081011                if(ptr)
Note: See TracChangeset for help on using the changeset viewer.