Revert YAZ-830 fix (hack)
[yaz-moved-to-github.git] / src / tcpip.c
index b4fbd91..a8f03ba 100644 (file)
@@ -1019,7 +1019,9 @@ COMSTACK tcpip_accept(COMSTACK h)
     TRC(fprintf(stderr, "tcpip_accept h=%p pid=%d\n", h, getpid()));
     if (h->state == CS_ST_INCON)
     {
+#if HAVE_GNUTLS_H
         tcpip_state *st = (tcpip_state *)h->cprivate;
+#endif
         tcpip_state *state = tcpip_state_create();
         cnew = (COMSTACK) xmalloc(sizeof(*cnew));
 
@@ -1228,10 +1230,10 @@ int tcpip_get(COMSTACK h, char **buf, int *bufsize)
                     h->cerrno = CSYSERR;
                     return -1;
                 }
+#endif
             }
             else if (!res)
                 return hasread;
-#endif
         }
         hasread += res;
         if (hasread > h->max_recv_bytes)
@@ -1289,7 +1291,6 @@ int tcpip_put(COMSTACK h, char *buf, int size)
     {
         state->towrite = size;
         state->written = 0;
-        state->altlen = 0; /* reset input buf in case of excess bytes YAZ-830 */
     }
     else if (state->towrite != size)
     {