From 00c9cb1b22cc17c4db573e0e613a5f116ff0092e Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Wed, 25 Jan 2017 15:52:18 +0000 Subject: More work on the types. This commit builds but has errors. Rework src/headers entirely: build skalibs/types.h Convert skalibs/fmtscan.h types. Propagate changes until it builds. There are a lot of incompatible pointer issues remaining, those will be fixed with the buffer overhaul. --- src/libstddjb/netstring_decode.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/libstddjb/netstring_decode.c') diff --git a/src/libstddjb/netstring_decode.c b/src/libstddjb/netstring_decode.c index a81756b..d129ea8 100644 --- a/src/libstddjb/netstring_decode.c +++ b/src/libstddjb/netstring_decode.c @@ -1,17 +1,17 @@ /* ISC license. */ +#include #include -#include +#include #include #include -#include -int netstring_decode (stralloc *sa, char const *s, unsigned int len) +ssize_t netstring_decode (stralloc *sa, char const *s, size_t len) { - unsigned int nlen ; - register unsigned int pos ; + uint64_t nlen ; + register size_t pos ; if (!len) return 0 ; - pos = uint_scan(s, &nlen) ; + pos = uint64_scan(s, &nlen) ; if (pos >= len) return (errno = EINVAL, -1) ; if (s[pos] != ':') return (errno = EINVAL, -1) ; s += pos+1 ; len -= pos+1 ; -- cgit v1.3.1