View | Details | Raw Unified | Return to bug 2683
Collapse All | Expand All

(-)a/packet.c (-3 / +4 lines)
Lines 1466-1473 ssh_packet_read_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p) Link Here
1466
				break;
1466
				break;
1467
			}
1467
			}
1468
		}
1468
		}
1469
		if (r == 0)
1469
		if (r == 0) {
1470
			return SSH_ERR_CONN_TIMEOUT;
1470
			r = SSH_ERR_CONN_TIMEOUT;
1471
			goto out;
1472
		}
1471
		/* Read data from the socket. */
1473
		/* Read data from the socket. */
1472
		len = read(state->connection_in, buf, sizeof(buf));
1474
		len = read(state->connection_in, buf, sizeof(buf));
1473
		if (len == 0) {
1475
		if (len == 0) {
1474
- 

Return to bug 2683