diff options
author | Günther Deschner <gd@samba.org> | 2009-01-08 13:23:59 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-01-08 13:24:22 +0100 |
commit | 50721b485f4322a2cd8688740bc1de3f754a7c05 (patch) | |
tree | 57e2fa2d084bbbb481868b3b0d472f1e35a97747 /source3/rpc_parse | |
parent | 490a14068e8c1e88fcf701dfcc89ecdae9cada2a (diff) | |
download | samba-50721b485f4322a2cd8688740bc1de3f754a7c05.tar.gz samba-50721b485f4322a2cd8688740bc1de3f754a7c05.tar.bz2 samba-50721b485f4322a2cd8688740bc1de3f754a7c05.zip |
s3-svcctl: use pidl based struct SERVICE_STATUS.
Guenther
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r-- | source3/rpc_parse/parse_svcctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpc_parse/parse_svcctl.c b/source3/rpc_parse/parse_svcctl.c index 559c65432e..022ece60c9 100644 --- a/source3/rpc_parse/parse_svcctl.c +++ b/source3/rpc_parse/parse_svcctl.c @@ -25,7 +25,7 @@ /******************************************************************* ********************************************************************/ -static bool svcctl_io_service_status( const char *desc, SERVICE_STATUS *status, prs_struct *ps, int depth ) +static bool svcctl_io_service_status( const char *desc, struct SERVICE_STATUS *status, prs_struct *ps, int depth ) { prs_debug(ps, depth, desc, "svcctl_io_service_status"); @@ -85,7 +85,7 @@ uint32 svcctl_sizeof_enum_services_status( ENUM_SERVICES_STATUS *status ) size += size_of_relative_string( &status->servicename ); size += size_of_relative_string( &status->displayname ); - size += sizeof(SERVICE_STATUS); + size += sizeof(struct SERVICE_STATUS); return size; } |