diff options
author | Gerald Carter <jerry@samba.org> | 2003-12-10 21:13:44 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-12-10 21:13:44 +0000 |
commit | c6594e35573186966a4d57404f1c06b98670db06 (patch) | |
tree | af6056161f18cc0406ee1089abb405730fe052cc /source/include | |
parent | 9359a6ea80d1228e87ea825a100a2d289c37162d (diff) | |
download | samba-c6594e35573186966a4d57404f1c06b98670db06.tar.gz samba-c6594e35573186966a4d57404f1c06b98670db06.tar.xz samba-c6594e35573186966a4d57404f1c06b98670db06.zip |
Fix UNISTR2 length bug in LsaQueryInfo(3) that cause SID resolution to fail on local files on on domain members; bug 875
Diffstat (limited to 'source/include')
-rw-r--r-- | source/include/rpc_misc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/include/rpc_misc.h b/source/include/rpc_misc.h index aaaad55c20c..29ae2121857 100644 --- a/source/include/rpc_misc.h +++ b/source/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 */ |