summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2011-03-30 10:27:04 -0700
committerJeremy Allison <jra@samba.org>2011-03-30 20:58:10 +0200
commitd546adeab54af123eff66cee61a487c88b6ba61b (patch)
tree663798349655444d882f491f61f2975a78503c2a /source3/include
parent048471d14b3ed65fe83e8f225e03af925aaf0c47 (diff)
downloadsamba-d546adeab54af123eff66cee61a487c88b6ba61b.tar.gz
samba-d546adeab54af123eff66cee61a487c88b6ba61b.tar.bz2
samba-d546adeab54af123eff66cee61a487c88b6ba61b.zip
Change convert_string_internal() and convert_string_error() to bool return.
Move closer to makeing all convert_string_XXX functions return bool. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Wed Mar 30 20:58:10 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index c19e3a45f7..94c924591f 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -77,7 +77,7 @@ void init_iconv(void);
size_t convert_string(charset_t from, charset_t to,
void const *src, size_t srclen,
void *dest, size_t destlen);
-size_t convert_string_error(charset_t from, charset_t to,
+bool convert_string_error(charset_t from, charset_t to,
void const *src, size_t srclen,
void *dest, size_t destlen,
size_t *converted_size);