diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-02-27 19:47:23 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-02-27 20:39:23 +0100 |
commit | 6dec6fbfaddf74c4567e83b354590cfbe3d6d0a9 (patch) | |
tree | c6e92b1476d3bc9df87ae378d67a647882212313 | |
parent | c0481904af6cb18041f0790f23c6763617a35366 (diff) | |
download | samba-6dec6fbfaddf74c4567e83b354590cfbe3d6d0a9.tar.gz samba-6dec6fbfaddf74c4567e83b354590cfbe3d6d0a9.tar.bz2 samba-6dec6fbfaddf74c4567e83b354590cfbe3d6d0a9.zip |
unixinfo.idl: don't use utf8string anymore
Note:
This changes the on wire format!!!
But it's a very bad idea to keep utf8string
as it's not valid NDR encoding and noone
would be able to write a compatible IDL
file using another compiler than pidl.
Maybe we should change the uuid,
but as this isn't really used yet
I keep the old one.
metze
(This used to be commit 5753d7fd8300d36558d3304418e1b0a300f56575)
-rw-r--r-- | source4/librpc/idl/unixinfo.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/librpc/idl/unixinfo.idl b/source4/librpc/idl/unixinfo.idl index 48bc565fff..6929e86e61 100644 --- a/source4/librpc/idl/unixinfo.idl +++ b/source4/librpc/idl/unixinfo.idl @@ -42,8 +42,8 @@ import "security.idl"; typedef struct { NTSTATUS status; - utf8string homedir; - utf8string shell; + [charset(UTF8),string] uint8 homedir[]; + [charset(UTF8),string] uint8 shell[]; } unixinfo_GetPWUidInfo; /******************/ |