diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-03-07 02:14:38 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:10:59 -0500 |
commit | d892500e733fa2c85f950b69f11546c0f037a25a (patch) | |
tree | d6fc1108c26b0f7fdfaf709393d8e2aaf0f188ef /source4/librpc/idl/orpc.idl | |
parent | dd2aefd56b0968da8b1c4d055bc8c2f30382fb23 (diff) | |
download | samba-d892500e733fa2c85f950b69f11546c0f037a25a.tar.gz samba-d892500e733fa2c85f950b69f11546c0f037a25a.tar.bz2 samba-d892500e733fa2c85f950b69f11546c0f037a25a.zip |
r5676: Fix some alignment issues and IRemoteActivation
(This used to be commit a9b13f67012d235d98920e639f59411d57a79bd7)
Diffstat (limited to 'source4/librpc/idl/orpc.idl')
-rw-r--r-- | source4/librpc/idl/orpc.idl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/librpc/idl/orpc.idl b/source4/librpc/idl/orpc.idl index 34ef41377b..0e407a4d13 100644 --- a/source4/librpc/idl/orpc.idl +++ b/source4/librpc/idl/orpc.idl @@ -99,7 +99,7 @@ interface ObjectRpcBaseTypes /* DUALSTRINGARRAYS are the return type for arrays of network addresses, */ /* arrays of endpoints and arrays of both used in many ORPC interfaces */ - typedef [public] struct + typedef [public,flag(NDR_NOALIGN)] struct { uint16 wTowerId; /* Cannot be zero. */ nstring NetworkAddr; @@ -107,9 +107,10 @@ interface ObjectRpcBaseTypes const uint16 COM_C_AUTHZ_NONE = 0xffff; - typedef [public] struct + typedef [public,flag(NDR_NOALIGN)] struct { uint16 wAuthnSvc; /* Cannot be zero. */ + uint16 wAuthzSvc; nstring PrincName; } SECURITYBINDING; |