diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-12-06 05:25:03 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:47:07 -0500 |
commit | 52456790151a8e127bd2d9a8bb546932710532b7 (patch) | |
tree | b77020e68ed3d660c62963327970ab68b4afb156 /source4 | |
parent | d55ab321b26239209316d9f1e9f0f031ddab2ae2 (diff) | |
download | samba-52456790151a8e127bd2d9a8bb546932710532b7.tar.gz samba-52456790151a8e127bd2d9a8bb546932710532b7.tar.bz2 samba-52456790151a8e127bd2d9a8bb546932710532b7.zip |
r12086: reverted the utf8string change in xattr.idl. See the discussion on
samba-technical on why this should stay as a simple null terminated
string (basically to make hand-written parsers easier)
(This used to be commit 0f1de4b1db7f0035e2b31f967d86de9306558968)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/librpc/idl/xattr.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/librpc/idl/xattr.idl b/source4/librpc/idl/xattr.idl index 4cb1f75393..36be31c48a 100644 --- a/source4/librpc/idl/xattr.idl +++ b/source4/librpc/idl/xattr.idl @@ -41,7 +41,7 @@ interface xattr NTTIME create_time; NTTIME change_time; NTTIME write_time; /* only used when sticky write time is set */ - [string,charset(UTF8)] uint8 *name; /* will be used for case-insensitive speedup */ + utf8string name; } xattr_DosInfo2; typedef [switch_type(uint16)] union { @@ -59,7 +59,7 @@ interface xattr const char *XATTR_DOSEAS_NAME = "user.DosEAs"; typedef struct { - [string,charset(UTF8)] uint8 *name; + utf8string name; DATA_BLOB value; } xattr_EA; @@ -85,7 +85,7 @@ interface xattr uint32 flags; udlong size; udlong alloc_size; - [charset(UTF8),string] uint8 name[]; + utf8string name; } xattr_DosStream; typedef [public] struct { |