Update of /cvsroot/srvx/services/src
In directory usw-pr-cvs1:/tmp/cvs-serv31838/src
Modified Files:
proto-common.c
Log Message:
Fix a spelling error and remove the old (duplicate) "connection lost" message.
Index: proto-common.c
===================================================================
RCS file: /cvsroot/srvx/services/src/proto-common.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** proto-common.c 23 Oct 2002 12:39:12 -0000 1.19
--- proto-common.c 23 Oct 2002 16:02:08 -0000 1.20
***************
*** 71,75 ****
pos = ioset_line_read(fd, buffer, sizeof(buffer));
if (pos <= 0) {
- log(MAIN_LOG, LOG_ERROR, "Connection to server lost.\n");
close_socket();
return;
--- 71,74 ----
***************
*** 84,88 ****
socket_destroyed(struct io_fd *fd)
{
! if (fd && fd->eof) log(MAIN_LOG, LOG_ERROR, "Connection to server list.\n");
socket_io_fd = NULL;
cManager.uplink->state = DISCONNECTED;
--- 83,87 ----
socket_destroyed(struct io_fd *fd)
{
! if (fd && fd->eof) log(MAIN_LOG, LOG_ERROR, "Connection to server lost.\n");
socket_io_fd = NULL;
cManager.uplink->state = DISCONNECTED;
|