- Timestamp:
- 2006-10-22T17:00:15Z (18 years ago)
- Branches:
- master
- Children:
- f0071b7
- Parents:
- 66f783f (diff), 6237ded (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- protocols
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/msn.c
r66f783f re8a6211 42 42 struct msn_data *md = g_new0( struct msn_data, 1 ); 43 43 44 set_login_progress( gc, 1, "Connecting" );45 46 44 gc->proto_data = md; 47 45 md->fd = -1; … … 54 52 } 55 53 54 set_login_progress( gc, 1, "Connecting" ); 55 56 56 md->fd = proxy_connect( "messenger.hotmail.com", 1863, msn_ns_connected, gc ); 57 57 if( md->fd < 0 ) … … 59 59 hide_login_progress( gc, "Could not connect to server" ); 60 60 signoff( gc ); 61 } 62 else 63 { 64 md->gc = gc; 65 md->away_state = msn_away_state_list; 66 67 msn_connections = g_slist_append( msn_connections, gc ); 68 } 61 return; 62 } 63 64 md->gc = gc; 65 md->away_state = msn_away_state_list; 66 67 msn_connections = g_slist_append( msn_connections, gc ); 69 68 } 70 69 -
protocols/nogaim.c
r66f783f re8a6211 578 578 ( ( u->online == oo ) && ( oa == !u->away ) ) ) ) /* (De)voice people changing state */ 579 579 { 580 irc_write( gc->irc, ":%s !%s@%s MODE %s %cv %s", gc->irc->mynick, gc->irc->mynick, gc->irc->myhost,580 irc_write( gc->irc, ":%s MODE %s %cv %s", gc->irc->myhost, 581 581 gc->irc->channel, u->away?'-':'+', u->nick ); 582 582 } … … 912 912 { 913 913 for( i = 0; i < count; v[i++] = 'v' ); v[i] = 0; 914 irc_write( irc, ":%s !%s@%sMODE %s %c%s%s",915 irc->my nick, irc->mynick, irc->myhost,914 irc_write( irc, ":%s MODE %s %c%s%s", 915 irc->myhost, 916 916 irc->channel, pm, v, list ); 917 917 … … 928 928 /* $v = 'v' x $i */ 929 929 for( i = 0; i < count; v[i++] = 'v' ); v[i] = 0; 930 irc_write( irc, ":%s !%s@%s MODE %s %c%s%s", irc->mynick, irc->mynick, irc->myhost,930 irc_write( irc, ":%s MODE %s %c%s%s", irc->myhost, 931 931 irc->channel, pm, v, list ); 932 932 } -
protocols/oscar/oscar.c
r66f783f re8a6211 2297 2297 } 2298 2298 info_string_append(str, "\n", _("Mobile Phone"), info->mobile); 2299 info_string_append(str, "\n", _("Gender"), info->gender==1 ? _("Female") : _("Male"));2299 info_string_append(str, "\n", _("Gender"), info->gender==1 ? _("Female") : info->gender==2 ? _("Male") : _("Unknown")); 2300 2300 if (info->birthyear || info->birthmonth || info->birthday) { 2301 2301 char date[30];
Note: See TracChangeset
for help on using the changeset viewer.