summaryrefslogtreecommitdiff
path: root/source3/lib/iconv.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2001-09-29 11:51:40 +0000
committerAndrew Bartlett <abartlet@samba.org>2001-09-29 11:51:40 +0000
commitd25c2b146b1581ef2a141ecbc04579b792b4c4dc (patch)
tree52b39bfe595ac99207f805aa782a75f1aa2503b4 /source3/lib/iconv.c
parent00d1bccaab0d9ae1cb485149ff11d3bef25098ff (diff)
downloadsamba-d25c2b146b1581ef2a141ecbc04579b792b4c4dc.tar.gz
samba-d25c2b146b1581ef2a141ecbc04579b792b4c4dc.tar.bz2
samba-d25c2b146b1581ef2a141ecbc04579b792b4c4dc.zip
Add a few const statements to various odd bits of the tree. (Fixes some
warnings) (This used to be commit b648cc669d16eb40b477c8dc51efeab485a15de5)
Diffstat (limited to 'source3/lib/iconv.c')
-rw-r--r--source3/lib/iconv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/iconv.c b/source3/lib/iconv.c
index 05292264c2..cf9fabf8c6 100644
--- a/source3/lib/iconv.c
+++ b/source3/lib/iconv.c
@@ -76,7 +76,7 @@ static size_t sys_iconv(void *cd,
on systems that don't have iconv
*/
size_t smb_iconv(smb_iconv_t cd,
- char **inbuf, size_t *inbytesleft,
+ const char **inbuf, size_t *inbytesleft,
char **outbuf, size_t *outbytesleft)
{
char cvtbuf[2048];