Changeset devel,71 for devel/irc.c

Show
Ignore:
Timestamp:
2005-12-08T14:51:06Z (5 years ago)
Author:
Jelmer Vernooij <jelmer@…>
branch-nick:
integration
revision id:
jelmer@samba.org-20051208145106-38dc18e64f8fb57d
Message:

Move some crypting-unrelated code

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • devel/irc.c

    r60 r71  
    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 );