diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-12-10 23:49:55 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-12-10 23:49:55 +0000 |
commit | e5ed18db65f33ef0b0151fc34b02e049b14d1ecd (patch) | |
tree | 6213ed40e35d5eb96077e681c551a560629bcf5d /source4/librpc | |
parent | 2bde98c0ee67b4c60c5906b3b2f297cf4922c67c (diff) | |
download | samba-e5ed18db65f33ef0b0151fc34b02e049b14d1ecd.tar.gz samba-e5ed18db65f33ef0b0151fc34b02e049b14d1ecd.tar.bz2 samba-e5ed18db65f33ef0b0151fc34b02e049b14d1ecd.zip |
more portable array of endpoints code from pidl
(This used to be commit c598590a117d4281c530cded4bf9dae16ac1ee76)
Diffstat (limited to 'source4/librpc')
-rw-r--r-- | source4/librpc/rpc/dcerpc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/rpc/dcerpc.h b/source4/librpc/rpc/dcerpc.h index 7c6ab160f3..6b1bd9de33 100644 --- a/source4/librpc/rpc/dcerpc.h +++ b/source4/librpc/rpc/dcerpc.h @@ -78,7 +78,7 @@ struct dcerpc_interface_call { struct dcerpc_endpoint_list { uint32 count; - const char *names[]; + const char **names; }; struct dcerpc_interface_table { |