summaryrefslogtreecommitdiff
path: root/src/libs6/s6_fdholder_setdump.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2021-09-02 19:11:11 +0000
committerLaurent Bercot <ska@appnovation.com>2021-09-02 19:11:11 +0000
commitd9488baa63351cafd237f5af15018ea5898ec0bc (patch)
tree9704741988528c28a8cb51c1e60fae56d712ab6d /src/libs6/s6_fdholder_setdump.c
parent208dc53700866d413efaf7374ebd9dbaeaee6551 (diff)
downloads6-d9488baa63351cafd237f5af15018ea5898ec0bc.tar.xz
Pass errno as unsigned char
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libs6/s6_fdholder_setdump.c')
-rw-r--r--src/libs6/s6_fdholder_setdump.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs6/s6_fdholder_setdump.c b/src/libs6/s6_fdholder_setdump.c
index 9c88f6b..e1462ef 100644
--- a/src/libs6/s6_fdholder_setdump.c
+++ b/src/libs6/s6_fdholder_setdump.c
@@ -34,7 +34,7 @@ int s6_fdholder_setdump (s6_fdholder_t *a, s6_fdholder_fd_t const *list, unsigne
if (!unixmessage_sender_timed_flush(&a->connection.out, deadline, stamp)) return 0 ;
if (sanitize_read(unixmessage_timed_receive(&a->connection.in, &m, deadline, stamp)) < 0) return 0 ;
if (!m.len || m.nfds) { unixmessage_drop(&m) ; return (errno = EPROTO, 0) ; }
- if (m.s[0]) return (errno = m.s[0], 0) ;
+ if (m.s[0]) return (errno = (unsigned char)m.s[0], 0) ;
if (m.len != 5) return (errno = EPROTO, 0) ;
uint32_unpack_big(m.s + 1, &trips) ;
if (trips != 1 + (ntot-1) / UNIXMESSAGE_MAXFDS) return (errno = EPROTO, 0) ;
@@ -71,10 +71,10 @@ int s6_fdholder_setdump (s6_fdholder_t *a, s6_fdholder_fd_t const *list, unsigne
unixmessage_drop(&m) ;
return (errno = EPROTO, 0) ;
}
- if (!error_isagain(m.s[0]) && i < trips-1)
- return errno = m.s[0] ? m.s[0] : EPROTO, 0 ;
+ if (!error_isagain((unsigned char)m.s[0]) && i < trips-1)
+ return errno = m.s[0] ? (unsigned char)m.s[0] : EPROTO, 0 ;
if (i == trips - 1 && m.s[0])
- return errno = error_isagain(m.s[0]) ? EPROTO : m.s[0], 0 ;
+ return errno = error_isagain((unsigned char)m.s[0]) ? EPROTO : (unsigned char)m.s[0], 0 ;
}
}
return 1 ;