Changeset 4022b68 for irc.c


Ignore:
Timestamp:
2010-08-21T22:42:01Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
fd424c8
Parents:
327af51 (diff), c00dd71 (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.
Message:

Merge mainline.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.c

    r327af51 r4022b68  
    103103        s = set_add( &b->set, "allow_takeover", "true", set_eval_bool, irc );
    104104        s = set_add( &b->set, "away_devoice", "true", set_eval_bw_compat, irc );
     105        s->flags |= SET_HIDDEN;
    105106        s = set_add( &b->set, "away_reply_timeout", "3600", set_eval_int, irc );
    106107        s = set_add( &b->set, "charset", "utf-8", set_eval_charset, irc );
     
    109110        s = set_add( &b->set, "display_timestamps", "true", set_eval_bool, irc );
    110111        s = set_add( &b->set, "handle_unknown", "add_channel", NULL, irc );
     112        s = set_add( &b->set, "last_version", NULL, NULL, irc );
     113        s->flags |= SET_HIDDEN;
    111114        s = set_add( &b->set, "lcnicks", "true", set_eval_bool, irc );
    112115        s = set_add( &b->set, "nick_format", "%-@nick", NULL, irc );
     
    122125        s = set_add( &b->set, "query_order", "lifo", NULL, irc );
    123126        s = set_add( &b->set, "root_nick", ROOT_NICK, set_eval_root_nick, irc );
     127        s->flags |= SET_HIDDEN;
    124128        s = set_add( &b->set, "show_offline", "false", set_eval_bw_compat, irc );
     129        s->flags |= SET_HIDDEN;
    125130        s = set_add( &b->set, "simulate_netsplit", "true", set_eval_bool, irc );
    126131        s = set_add( &b->set, "timezone", "local", set_eval_timezone, irc );
     
    915920                val = "online@,away+,offline";
    916921        else
    917                 return SET_INVALID;
     922                val = "online+,away";
    918923       
    919924        for( l = irc->channels; l; l = l->next )
Note: See TracChangeset for help on using the changeset viewer.