summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-12-10 21:14:39 +0000
committerGerald Carter <jerry@samba.org>2003-12-10 21:14:39 +0000
commit1959428a00d5b6b41e2fc741841ba16e98926b96 (patch)
treeb818bd49501a1a623e76f975d32ed0da32a6c4de /source3/include
parentb90d6b16e4175526c5112b9541d7d509d5a64edf (diff)
downloadsamba-1959428a00d5b6b41e2fc741841ba16e98926b96.tar.gz
samba-1959428a00d5b6b41e2fc741841ba16e98926b96.tar.bz2
samba-1959428a00d5b6b41e2fc741841ba16e98926b96.zip
Fix UNISTR2 length bug in LsaQueryInfo(3) that cause SID resolution to fail on local files on on domain members; bug 875
(This used to be commit a5c5dde1c34ba44f8d9bbb38720a089a6d61806c)
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/rpc_misc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/rpc_misc.h b/source3/include/rpc_misc.h
index aaaad55c20..29ae212185 100644
--- a/source3/include/rpc_misc.h
+++ b/source3/include/rpc_misc.h
@@ -403,5 +403,5 @@ typedef struct buffer4_info
}
BUFFER4;
-enum unistr2_term_codes { UNI_FLAGS_NONE = 0, UNI_STR_TERMINATE = 1, UNI_MAXLEN_TERMINATE = 2 };
+enum unistr2_term_codes { UNI_FLAGS_NONE = 0, UNI_STR_TERMINATE = 1, UNI_MAXLEN_TERMINATE = 2, UNI_BROKEN_NON_NULL = 3 };
#endif /* _RPC_MISC_H */