Changeset 43f205b
- Timestamp:
- 2005-12-18T01:06:11Z (19 years ago)
- Branches:
- master
- Children:
- 3b9390b
- Parents:
- a03a9f3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
irc.c
ra03a9f3 r43f205b 1076 1076 irc_reply( irc, 3, ":%s", IRCD_INFO ); 1077 1077 irc_reply( irc, 4, "%s %s %s %s", irc->myhost, BITLBEE_VERSION, UMODES, CMODES ); 1078 irc_reply( irc, 5, "PREFIX=(ov)@% CHANTYPES=#& CHANMODES=,,,%s NICKLEN=%d NETWORK=BitlBee CASEMAPPING=rfc1459 MAXTARGETS=1 WATCH=128 :are supported by this server", CMODES, MAX_NICK_LENGTH - 1 );1078 irc_reply( irc, 5, "PREFIX=(ov)@%% CHANTYPES=#& CHANMODES=,,,%s NICKLEN=%d NETWORK=BitlBee CASEMAPPING=rfc1459 MAXTARGETS=1 WATCH=128 :are supported by this server", CMODES, MAX_NICK_LENGTH - 1 ); 1079 1079 irc_motd( irc ); 1080 1080 irc_umode_set( irc, irc->myhost, "+" UMODE ); -
protocols/msn/passport.c
ra03a9f3 r43f205b 88 88 struct passport_reply *rep = req->data; 89 89 90 if( !g_slist_find( msn_connections, rep->data ) )90 if( !g_slist_find( msn_connections, rep->data ) || !req->finished || !req->reply_headers ) 91 91 { 92 92 destroy_reply( rep ); … … 169 169 char *urlend; 170 170 171 if( !g_slist_find( msn_connections, rep->data ) )171 if( !g_slist_find( msn_connections, rep->data ) || !req->finished || !req->reply_headers ) 172 172 { 173 173 destroy_reply( rep );
Note: See TracChangeset
for help on using the changeset viewer.