diff options
author | Jim McDonough <jmcd@samba.org> | 2003-10-20 21:10:18 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2003-10-20 21:10:18 +0000 |
commit | 6fe9423fc69f3c1a79d0e45ac47d0b3228e4d4d6 (patch) | |
tree | e7438665f59799f7d6286d78035759f7feb867d4 /source3/include | |
parent | 5fad0208ad386c35c2cb370d93808d3903d3fc8a (diff) | |
download | samba-6fe9423fc69f3c1a79d0e45ac47d0b3228e4d4d6.tar.gz samba-6fe9423fc69f3c1a79d0e45ac47d0b3228e4d4d6.tar.bz2 samba-6fe9423fc69f3c1a79d0e45ac47d0b3228e4d4d6.zip |
Update structures after ethereal showed some marshalling/unmarshalling
errors.
(This used to be commit 9d0f322a851f487cea320e57076213435e5c6481)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/rpc_epmapper.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/include/rpc_epmapper.h b/source3/include/rpc_epmapper.h index 1b5b6b1876..de3a2cb08d 100644 --- a/source3/include/rpc_epmapper.h +++ b/source3/include/rpc_epmapper.h @@ -70,7 +70,6 @@ typedef struct typedef struct { - uint32 referent_id; uint32 max_length; uint32 length; uint16 num_floors; @@ -80,7 +79,8 @@ typedef struct typedef struct { - EPM_HANDLE handle; + EPM_HANDLE handle; + uint32 tower_ref_id; EPM_TOWER *tower; EPM_HANDLE term_handle; /* in/out */ uint32 max_towers; @@ -91,6 +91,7 @@ typedef struct uint32 max_count; uint32 offset; uint32 count; + uint32 *tower_ref_ids; EPM_TOWER *towers; } EPM_TOWER_ARRAY; |