Changeset daa9e02


Ignore:
Timestamp:
2006-01-17T18:05:22Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
48721c3
Parents:
f4a5940
Message:

LILO/WALLOPS commands now check if the receiving user logged in yet.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ipc.c

    rf4a5940 rdaa9e02  
    8383        irc_t *irc = data;
    8484       
     85        if( irc->status < USTATUS_LOGGED_IN )
     86                return 1;
     87       
    8588        if( strchr( irc->umode, 'w' ) )
    8689                irc_write( irc, ":%s WALLOPS :%s", irc->myhost, cmd[1] );
     
    9295{
    9396        irc_t *irc = data;
     97       
     98        if( irc->status < USTATUS_LOGGED_IN )
     99                return 1;
    94100       
    95101        if( strchr( irc->umode, 's' ) )
Note: See TracChangeset for help on using the changeset viewer.