summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2000-04-11 13:47:17 +0000
committerAndrew Tridgell <tridge@samba.org>2000-04-11 13:47:17 +0000
commit707401fc1e697362cdaadcfaac4edc964b80b1a0 (patch)
treedacdd9d33b07437934d9d72f6beafac0391ae46e
parentd35bbe56bc9e3e5896b2ebdf33ff6468a0432e1f (diff)
downloadsamba-707401fc1e697362cdaadcfaac4edc964b80b1a0.tar.gz
samba-707401fc1e697362cdaadcfaac4edc964b80b1a0.tar.xz
samba-707401fc1e697362cdaadcfaac4edc964b80b1a0.zip
added a cheap and nasty skip_unibuf() fn to allow easier merging from
TNG out unicode string handling functions need a lot of work
-rw-r--r--source/lib/util_unistr.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/source/lib/util_unistr.c b/source/lib/util_unistr.c
index 6983d1100a6..8a02878c135 100644
--- a/source/lib/util_unistr.c
+++ b/source/lib/util_unistr.c
@@ -137,6 +137,16 @@ void unistr_to_ascii(char *dest, const uint16 *src, int len)
*dest = 0;
}
+/* from TNG - should be fixed */
+char *skip_unibuf(char *src, int len)
+{
+ char *srcend = src + len;
+
+ while (src < srcend && SVAL(src,0)) src += 2;
+
+ return src;
+}
+
/*******************************************************************
Skip past some unicode strings in a buffer.