minor optimization

This commit is contained in:
Jeff Hill
2000-06-08 17:56:03 +00:00
parent e613d58ea5
commit a828ff01fe
+1 -2
View File
@@ -52,7 +52,6 @@ void camsgtask (struct client *client)
{
int nchars;
int status;
int true = TRUE;
client->tid = threadGetIdSelf ();
@@ -93,7 +92,7 @@ void camsgtask (struct client *client)
* if there is a partial message
* align it with the start of the buffer
*/
if (client->recv.cnt >= client->recv.stk) {
if (client->recv.cnt > client->recv.stk) {
unsigned bytes_left;
char *pbuf;