Changeset 8efa2f4 for irc.c


Ignore:
Timestamp:
2005-12-08T14:57:13Z (18 years ago)
Author:
Jelmer Vernooij <jelmer@…>
Branches:
master
Children:
09adf08
Parents:
7989fcf3 (diff), c2295f7 (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 some fixes from my integration branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.c

    r7989fcf3 r8efa2f4  
    3131
    3232GSList *irc_connection_list = NULL;
     33
     34char *passchange (irc_t *irc, void *set, char *value)
     35{
     36        setpassnc (irc, value);
     37        return (NULL);
     38}
    3339
    3440irc_t *irc_new( int fd )
     
    129135        set_add( irc, "to_char", ": ", set_eval_to_char );
    130136        set_add( irc, "typing_notice", "false", set_eval_bool );
     137        set_add( irc, "password", NULL, passchange);
    131138       
    132139        conf_loaddefaults( irc );
Note: See TracChangeset for help on using the changeset viewer.