diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2008-03-15 21:05:39 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2008-03-15 21:05:39 +0000 |
commit | 79eae4a9edb343eaad30425289f7737467a535bb (patch) | |
tree | d9e71bc901ad9ea1abb9d2ead8a525a4cf7e85d5 | |
parent | a869d9147584de96a0ac341416e551953167800f (diff) |
Inviting someone to a Yahoo! chatroom with msg=NULL is bad. I wonder if
/invite ever worked in the Yahoo! module...
-rw-r--r-- | protocols/yahoo/yahoo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/yahoo/yahoo.c b/protocols/yahoo/yahoo.c index 9f9ffcf7..36579d66 100644 --- a/protocols/yahoo/yahoo.c +++ b/protocols/yahoo/yahoo.c @@ -314,7 +314,7 @@ static void byahoo_chat_invite( struct groupchat *c, char *who, char *msg ) { struct byahoo_data *yd = (struct byahoo_data *) c->ic->proto_data; - yahoo_conference_invite( yd->y2_id, NULL, c->data, c->title, msg ); + yahoo_conference_invite( yd->y2_id, NULL, c->data, c->title, msg ? msg : "" ); } static void byahoo_chat_leave( struct groupchat *c ) |