X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=comstack%2Ftcpip.c;h=3d69f707a18b2dc64ba89421c4072c275a78d86b;hb=c39a893dfdae5f792139177132e7e7a70e010aa7;hp=05b10dd1002885211dbf1e56fe30943b6e8f2a19;hpb=125af6f8db172ec8fd4c24dfe6f6ebeca49afacb;p=yaz-moved-to-github.git diff --git a/comstack/tcpip.c b/comstack/tcpip.c index 05b10dd..3d69f70 100644 --- a/comstack/tcpip.c +++ b/comstack/tcpip.c @@ -2,7 +2,7 @@ * Copyright (c) 1995-2003, Index Data * See the file LICENSE for details. * - * $Id: tcpip.c,v 1.57 2003-05-13 14:21:13 adam Exp $ + * $Id: tcpip.c,v 1.58 2003-05-20 20:33:29 adam Exp $ */ #include @@ -726,8 +726,8 @@ int tcpip_get(COMSTACK h, char **buf, int *bufsize) return -1; #ifdef __sun__ yaz_set_errno( 0 ); - // unfortunatly, sun sometimes forgets to set errno in recv - // when EWOULDBLOCK etc. would be required (res = -1) + /* unfortunatly, sun sometimes forgets to set errno in recv + when EWOULDBLOCK etc. would be required (res = -1) */ #endif res = recv(h->iofile, *buf + hasread, CS_TCPIP_BUFCHUNK, 0); TRC(fprintf(stderr, " recv res=%d, hasread=%d\n", res, hasread));