Changes in / [68b50b5f:2095c57]


Ignore:
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • irc.c

    r68b50b5f r2095c57  
    162162        if( irc->w_watch_source_id > 0 )
    163163                g_source_remove( irc->w_watch_source_id );
    164        
     164        g_io_channel_close( irc->io_channel );
    165165        g_io_channel_unref( irc->io_channel );
    166166        irc_connection_list = g_slist_remove( irc_connection_list, irc );
     
    462462                }
    463463                return( 1 );
    464         }
    465         else if( g_strcasecmp( cmd[0], "QUIT" ) == 0 )
    466         {
    467                 irc_write( irc, "ERROR :%s%s", cmd[1]?"Quit: ":"", cmd[1]?cmd[1]:"Client Quit" );
    468                 g_io_channel_close( irc->io_channel );
    469                 return( 0 );
    470464        }
    471465       
     
    643637                }
    644638        }
     639        else if( g_strcasecmp( cmd[0], "QUIT" ) == 0 )
     640        {
     641                irc_write( irc, "ERROR :%s%s", cmd[1]?"Quit: ":"", cmd[1]?cmd[1]:"Client Quit" );
     642                g_io_channel_close( irc->io_channel );
     643                return( 0 );
     644        }
    645645        else if( g_strcasecmp( cmd[0], "WHO" ) == 0 )
    646646        {
  • protocols/oscar/aim_internal.h

    r68b50b5f r2095c57  
    107107
    108108void aim_initsnachash(aim_session_t *sess);
     109aim_snacid_t aim_newsnac(aim_session_t *, aim_snac_t *newsnac);
    109110aim_snacid_t aim_cachesnac(aim_session_t *sess, const guint16 family, const guint16 type, const guint16 flags, const void *data, const int datalen);
    110111aim_snac_t *aim_remsnac(aim_session_t *, aim_snacid_t id);
  • protocols/oscar/snac.c

    r68b50b5f r2095c57  
    1414
    1515#include <aim.h>
    16 
    17 static aim_snacid_t aim_newsnac(aim_session_t *sess, aim_snac_t *newsnac);
    1816
    1917/*
     
    5351 * list/hash.
    5452 */
    55 static aim_snacid_t aim_newsnac(aim_session_t *sess, aim_snac_t *newsnac)
     53aim_snacid_t aim_newsnac(aim_session_t *sess, aim_snac_t *newsnac)
    5654{
    5755        aim_snac_t *snac;
Note: See TracChangeset for help on using the changeset viewer.