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