From d546adeab54af123eff66cee61a487c88b6ba61b Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 30 Mar 2011 10:27:04 -0700 Subject: 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 Autobuild-Date: Wed Mar 30 20:58:10 CEST 2011 on sn-devel-104 --- source3/include/proto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/include') 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); -- cgit