summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2003-03-15 08:03:11 +0000
committerAndrew Bartlett <abartlet@samba.org>2003-03-15 08:03:11 +0000
commitf1d333ea35a4fed92e2d51aafa4e758f577e5cf1 (patch)
treeb39bc10ed7ff5668c8e634f9c9ffa4d948200371 /source3/lib
parenta27d434c4b4363762e7a0d5eeddd35e2b8dbb374 (diff)
downloadsamba-f1d333ea35a4fed92e2d51aafa4e758f577e5cf1.tar.gz
samba-f1d333ea35a4fed92e2d51aafa4e758f577e5cf1.tar.bz2
samba-f1d333ea35a4fed92e2d51aafa4e758f577e5cf1.zip
Remove an unused function and fix the build.
Andrew Bartlett (This used to be commit 67a0319d268dfc0e2154d3ab0f8bf866e3cbb6db)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/charcnv.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/source3/lib/charcnv.c b/source3/lib/charcnv.c
index 76d77ddd67..fa646573d8 100644
--- a/source3/lib/charcnv.c
+++ b/source3/lib/charcnv.c
@@ -647,42 +647,6 @@ size_t pull_ucs2_allocate(void **dest, const smb_ucs2_t *src)
}
/**
- Copy a string from a utf-8 source to a unix char* destination.
- Flags can have:
- STR_TERMINATE means the string in src is null terminated.
- if STR_TERMINATE is set then src_len is ignored.
- src_len is the length of the source area in bytes
- Return the number of bytes occupied by the string in src.
- The resulting string in "dest" is always null terminated.
-**/
-
-static size_t pull_utf8(char *dest, const void *src, size_t dest_len, size_t src_len, int flags)
-{
- size_t ret;
-
- if (dest_len == (size_t)-1)
- dest_len = sizeof(pstring);
-
- if (flags & STR_TERMINATE) {
- if (src_len == (size_t)-1) {
- src_len = strlen(src) + 1;
- } else {
- size_t len = strnlen(src, src_len);
- if (len < src_len)
- len++;
- src_len = len;
- }
- }
-
- ret = convert_string(CH_UTF8, CH_UNIX, src, src_len, dest, dest_len);
- if (dest_len)
- dest[MIN(ret, dest_len-1)] = 0;
-
- return src_len;
-}
-#endif
-
-/**
* Copy a string from a UTF-8 src to a unix char * destination, allocating a buffer using talloc
*
* @param dest always set at least to NULL