summaryrefslogtreecommitdiff
path: root/lib/util
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-03-25 14:34:43 +1100
committerAndrew Tridgell <tridge@samba.org>2011-03-25 05:22:24 +0100
commitf0922147fec83fc4900208669e6cb0e0607757cd (patch)
tree209c3cbc67a23533d4b627183d13a9560eb572e0 /lib/util
parent0189087e257f37dc52beebc49967ac763f58dec4 (diff)
downloadsamba-f0922147fec83fc4900208669e6cb0e0607757cd.tar.gz
samba-f0922147fec83fc4900208669e6cb0e0607757cd.tar.bz2
samba-f0922147fec83fc4900208669e6cb0e0607757cd.zip
charcnv: ensure convert_string_error doesn't conflict with s3 function
use _handle for handle based functions Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Fri Mar 25 05:22:24 CET 2011 on sn-devel-104
Diffstat (limited to 'lib/util')
-rw-r--r--lib/util/charset/charcnv.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/util/charset/charcnv.c b/lib/util/charset/charcnv.c
index 887cc9d989..3b7dbb3074 100644
--- a/lib/util/charset/charcnv.c
+++ b/lib/util/charset/charcnv.c
@@ -124,10 +124,10 @@ convert:
* @returns the number of bytes occupied in the destination
* on error, returns -1, and sets errno
**/
-_PUBLIC_ ssize_t convert_string_error(struct smb_iconv_handle *ic,
- charset_t from, charset_t to,
- void const *src, size_t srclen,
- void *dest, size_t destlen, size_t *converted_size)
+_PUBLIC_ ssize_t convert_string_error_handle(struct smb_iconv_handle *ic,
+ charset_t from, charset_t to,
+ void const *src, size_t srclen,
+ void *dest, size_t destlen, size_t *converted_size)
{
size_t i_len, o_len;
ssize_t retval;
@@ -174,7 +174,7 @@ _PUBLIC_ bool convert_string_handle(struct smb_iconv_handle *ic,
{
ssize_t retval;
- retval = convert_string_error(ic, from, to, src, srclen, dest, destlen, converted_size);
+ retval = convert_string_error_handle(ic, from, to, src, srclen, dest, destlen, converted_size);
if(retval==(size_t)-1) {
const char *reason;
switch(errno) {