diff options
author | Paul Green <paulg@samba.org> | 2004-09-06 00:24:28 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:52:36 -0500 |
commit | b887c41253ec67288333fd20f282c89b139789a3 (patch) | |
tree | d0f31b14a587a595f8e5aa2407f10654900186ac /source3 | |
parent | 571cc4811bc373a5b4aeda9e5635aff1ff650e06 (diff) | |
download | samba-b887c41253ec67288333fd20f282c89b139789a3.tar.gz samba-b887c41253ec67288333fd20f282c89b139789a3.tar.bz2 samba-b887c41253ec67288333fd20f282c89b139789a3.zip |
r2231: Fix iconv.c to use the Samba-supplied uint8 type not the uint8_t type, which does not exist on all platforms.
(This used to be commit acc793ead7e61f1eb87864b676d26f5791367228)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/iconv.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/lib/iconv.c b/source3/lib/iconv.c index 17cafdcbd6..66a6e6cd8b 100644 --- a/source3/lib/iconv.c +++ b/source3/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; |