From: Paul Green Date: Mon, 6 Sep 2004 00:24:28 +0000 (+0000) Subject: r2231: Fix iconv.c to use the Samba-supplied uint8 type not the uint8_t type, which... X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~5827 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=acc793ead7e61f1eb87864b676d26f5791367228;p=thirdparty%2Fsamba.git r2231: Fix iconv.c to use the Samba-supplied uint8 type not the uint8_t type, which does not exist on all platforms. --- diff --git a/source/lib/iconv.c b/source/lib/iconv.c index 17cafdcbd6b..66a6e6cd8bc 100644 --- a/source/lib/iconv.c +++ b/source/lib/iconv.c @@ -541,8 +541,8 @@ static size_t utf8_pull(void *cd, const char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft) { size_t in_left=*inbytesleft, out_left=*outbytesleft; - const uint8_t *c = (const uint8_t *)*inbuf; - uint8_t *uc = (uint8_t *)*outbuf; + const uint8 *c = (const uint8 *)*inbuf; + uint8 *uc = (uint8 *)*outbuf; while (in_left >= 1 && out_left >= 2) { if ((c[0] & 0x80) == 0) { @@ -658,8 +658,8 @@ static size_t utf8_push(void *cd, const char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft) { size_t in_left=*inbytesleft, out_left=*outbytesleft; - uint8_t *c = (uint8_t *)*outbuf; - const uint8_t *uc = (const uint8_t *)*inbuf; + uint8 *c = (uint8 *)*outbuf; + const uint8 *uc = (const uint8 *)*inbuf; while (in_left >= 2 && out_left >= 1) { unsigned int codepoint;