[srvx-commits] CVS: services/src sockcheck.c,1.54.2.17,1.54.2.18
Brought to you by:
entrope
From: Miles P. <pet...@us...> - 2001-08-12 02:58:58
|
Update of /cvsroot/srvx/services/src In directory usw-pr-cvs1:/tmp/cvs-serv17135 Modified Files: Tag: rel-1_0 sockcheck.c Log Message: srvx doesnt like ansi term codes. (bbs's on port 23) Index: sockcheck.c =================================================================== RCS file: /cvsroot/srvx/services/src/sockcheck.c,v retrieving revision 1.54.2.17 retrieving revision 1.54.2.18 diff -C2 -r1.54.2.17 -r1.54.2.18 *** sockcheck.c 2001/08/12 01:27:35 1.54.2.17 --- sockcheck.c 2001/08/12 02:58:53 1.54.2.18 *************** *** 667,671 **** for (n=0; n<(client->state->responses.used-1); n++) { /* since we have nothing to read we will never enter the while() loop */ ! if (!strlen(client->resp_state[n])) { log(PC_LOG, LOG_ERROR, "Choosing response %d for client %s\n", n, client->addr->hostname); return n; --- 667,671 ---- for (n=0; n<(client->state->responses.used-1); n++) { /* since we have nothing to read we will never enter the while() loop */ ! if (client->resp_state[n] && !strlen(client->resp_state[n])) { log(PC_LOG, LOG_ERROR, "Choosing response %d for client %s\n", n, client->addr->hostname); return n; |