From 5753d7fd8300d36558d3304418e1b0a300f56575 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 27 Feb 2008 19:47:23 +0100 Subject: [PATCH] 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 --- source/librpc/idl/unixinfo.idl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/librpc/idl/unixinfo.idl b/source/librpc/idl/unixinfo.idl index 48bc565ff..6929e86e6 100644 --- a/source/librpc/idl/unixinfo.idl +++ b/source/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; /******************/ -- 2.34.1