Changeset b28dd0e in code


Ignore:
Timestamp:
Mar 5, 2014, 9:06:17 PM (11 years ago)
Author:
Stuart Henderson <stu@…>
Branches:
master
Children:
3dba97d
Parents:
1dd3554
Message:

Ignore flags for /w, ircII uses -s by default with "SHOW_CHANNEL_NAMES"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cmd.c

    r1dd3554 rb28dd0e  
    357357        char group[ICB_MAXGRPLEN];
    358358
     359        while (strlen(arg) && arg[0] == '-') { /* ignore options, for now */
     360                /* ircII "set SHOW_CHANNEL_NAMES ON" uses /w -s */
     361                while(arg[0] != ' ' && arg[0] != 0)
     362                        arg++;
     363                if(arg[0] == ' ')
     364                        arg++;
     365        }
     366
    359367        if (strlen(arg) == 0)
    360368                return icb_who(is, NULL);
Note: See TracChangeset for help on using the changeset viewer.