From bae06fdab72915d741c88ae9224107d99d6968f3 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 19 Jan 2006 23:04:14 +0000 Subject: r13044: I finally understand that the [charset()] and [string] properties are independent... fix some warnings metze --- source/librpc/idl/drsblobs.idl | 2 +- source/librpc/idl/nbt.idl | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/librpc/idl/drsblobs.idl b/source/librpc/idl/drsblobs.idl index 464bdb0d83e..d0173e48390 100644 --- a/source/librpc/idl/drsblobs.idl +++ b/source/librpc/idl/drsblobs.idl @@ -142,7 +142,7 @@ interface drsblobs { } ldapControlDirSyncBlob; typedef [public,relative_base] struct { - [string,charset(DOS),value("MSDS")] uint8 msds[4]; + [charset(DOS),value("MSDS")] uint8 msds[4]; [subcontext(0)] ldapControlDirSyncBlob blob; } ldapControlDirSyncCookie; diff --git a/source/librpc/idl/nbt.idl b/source/librpc/idl/nbt.idl index f2aca12b140..6c5c65e8ba9 100644 --- a/source/librpc/idl/nbt.idl +++ b/source/librpc/idl/nbt.idl @@ -596,7 +596,7 @@ typedef struct { uint8 UpdateCount; uint32 Periodicity; - [string,charset(DOS)] uint8 ServerName[16]; + [charset(DOS)] uint8 ServerName[16]; uint8 OSMajor; uint8 OSMinor; svcctl_ServerType ServerType; @@ -637,7 +637,7 @@ typedef struct { uint8 UpdateCount; uint32 Periodicity; - [string,charset(DOS)] uint8 ServerName[16]; + [charset(DOS)] uint8 ServerName[16]; uint8 OSMajor; uint8 OSMinor; svcctl_ServerType ServerType; @@ -656,7 +656,7 @@ typedef struct { uint8 UpdateCount; uint32 Periodicity; - [string,charset(DOS)] uint8 ServerName[16]; + [charset(DOS)] uint8 ServerName[16]; uint8 OSMajor; uint8 OSMinor; svcctl_ServerType ServerType; -- cgit