summaryrefslogtreecommitdiff
path: root/source3/lib/util_unistr.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/lib/util_unistr.c')
-rw-r--r--source3/lib/util_unistr.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/source3/lib/util_unistr.c b/source3/lib/util_unistr.c
index 5ec947ecbf..f279ceafc3 100644
--- a/source3/lib/util_unistr.c
+++ b/source3/lib/util_unistr.c
@@ -92,26 +92,6 @@ size_t dos_PutUniCode(char *dst,const char *src, size_t len, bool null_terminate
}
-/*******************************************************************
- Skip past a unicode string, but not more than len. Always move
- past a terminating zero if found.
-********************************************************************/
-
-char *skip_unibuf(char *src, size_t len)
-{
- char *srcend = src + len;
-
- while (src < srcend && SVAL(src,0)) {
- src += 2;
- }
-
- if(!SVAL(src,0)) {
- src += 2;
- }
-
- return src;
-}
-
/* Converts a string from internal samba format to unicode
*/