diff options
author | Colin Watson <cjwatson@debian.org> | 2019-10-09 22:59:48 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2019-10-09 23:39:39 +0100 |
commit | 767ee84d3465b6d244a9108de5c167a9ab866df9 (patch) | |
tree | 69b14ef6a62d7f133298a21d2ad6046f130b7801 /mux.c | |
parent | ddeaf9ee7d5c6612b88f1c4a83fc6fbccb93bf60 (diff) | |
parent | efef12825b9582c1710da3b7e50135870963d4f4 (diff) |
New upstream release (8.1p1)
Diffstat (limited to 'mux.c')
-rw-r--r-- | mux.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: mux.c,v 1.79 2019/01/19 21:35:25 djm Exp $ */ | 1 | /* $OpenBSD: mux.c,v 1.80 2019/06/28 13:35:04 deraadt Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2002-2008 Damien Miller <djm@openbsd.org> | 3 | * Copyright (c) 2002-2008 Damien Miller <djm@openbsd.org> |
4 | * | 4 | * |
@@ -1492,7 +1492,7 @@ mux_client_read(int fd, struct sshbuf *b, size_t need) | |||
1492 | return -1; | 1492 | return -1; |
1493 | } | 1493 | } |
1494 | len = read(fd, p + have, need - have); | 1494 | len = read(fd, p + have, need - have); |
1495 | if (len < 0) { | 1495 | if (len == -1) { |
1496 | switch (errno) { | 1496 | switch (errno) { |
1497 | #if defined(EWOULDBLOCK) && (EWOULDBLOCK != EAGAIN) | 1497 | #if defined(EWOULDBLOCK) && (EWOULDBLOCK != EAGAIN) |
1498 | case EWOULDBLOCK: | 1498 | case EWOULDBLOCK: |
@@ -1541,7 +1541,7 @@ mux_client_write_packet(int fd, struct sshbuf *m) | |||
1541 | return -1; | 1541 | return -1; |
1542 | } | 1542 | } |
1543 | len = write(fd, ptr + have, need - have); | 1543 | len = write(fd, ptr + have, need - have); |
1544 | if (len < 0) { | 1544 | if (len == -1) { |
1545 | switch (errno) { | 1545 | switch (errno) { |
1546 | #if defined(EWOULDBLOCK) && (EWOULDBLOCK != EAGAIN) | 1546 | #if defined(EWOULDBLOCK) && (EWOULDBLOCK != EAGAIN) |
1547 | case EWOULDBLOCK: | 1547 | case EWOULDBLOCK: |
@@ -2324,7 +2324,7 @@ muxclient(const char *path) | |||
2324 | fatal("ControlPath too long ('%s' >= %u bytes)", path, | 2324 | fatal("ControlPath too long ('%s' >= %u bytes)", path, |
2325 | (unsigned int)sizeof(addr.sun_path)); | 2325 | (unsigned int)sizeof(addr.sun_path)); |
2326 | 2326 | ||
2327 | if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) | 2327 | if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) == -1) |
2328 | fatal("%s socket(): %s", __func__, strerror(errno)); | 2328 | fatal("%s socket(): %s", __func__, strerror(errno)); |
2329 | 2329 | ||
2330 | if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == -1) { | 2330 | if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == -1) { |