ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/s_bsd.c
(Generate patch)

Comparing ircd-hybrid/trunk/src/s_bsd.c (file contents):
Revision 4415 by michael, Thu Aug 7 14:09:36 2014 UTC vs.
Revision 4439 by michael, Sat Aug 9 18:36:19 2014 UTC

# Line 205 | Line 205 | close_connection(struct Client *client_p
205    dbuf_clear(&client_p->localClient->buf_sendq);
206    dbuf_clear(&client_p->localClient->buf_recvq);
207  
208 <  MyFree(client_p->localClient->passwd);
208 >  MyFree(client_p->localClient->password);
209 >  client_p->localClient->password = NULL;
210 >
211    detach_conf(client_p, CONF_CLIENT|CONF_OPER|CONF_SERVER);
212   }
213  
# Line 419 | Line 421 | comm_setflush(fde_t *fd, time_t timeout,
421   * this will happen.
422   */
423   void
424 < comm_checktimeouts(void *notused)
424 > comm_checktimeouts(void *unused)
425   {
426    int i;
427    fde_t *F;
# Line 559 | Line 561 | comm_connect_callback(fde_t *fd, int sta
561   * called ..
562   */
563   static void
564 < comm_connect_timeout(fde_t *fd, void *notused)
564 > comm_connect_timeout(fde_t *fd, void *unused)
565   {
566    /* error! */
567    comm_connect_callback(fd, COMM_ERR_TIMEOUT);
# Line 600 | Line 602 | comm_connect_dns_callback(void *vptr, co
602    comm_connect_tryconnect(F, NULL);
603   }
604  
605 < /* static void comm_connect_tryconnect(int fd, void *notused)
605 > /* static void comm_connect_tryconnect(int fd, void *unused)
606   * Input: The fd, the handler data(unused).
607   * Output: None.
608   * Side-effects: Try and connect with pending connect data for the FD. If
# Line 609 | Line 611 | comm_connect_dns_callback(void *vptr, co
611   *               to select for a write event on this FD.
612   */
613   static void
614 < comm_connect_tryconnect(fde_t *fd, void *notused)
614 > comm_connect_tryconnect(fde_t *fd, void *unused)
615   {
616    int retval;
617  

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)