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/services/svc_winreg.c | |
parent | 490a14068e8c1e88fcf701dfcc89ecdae9cada2a (diff) | |
download | samba-50721b485f4322a2cd8688740bc1de3f754a7c05.tar.gz |
s3-svcctl: use pidl based struct SERVICE_STATUS.
Guenther
Diffstat (limited to 'source3/services/svc_winreg.c')
-rw-r--r-- | source3/services/svc_winreg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/services/svc_winreg.c b/source3/services/svc_winreg.c index 09d25f45e4d..4976e6d3b34 100644 --- a/source3/services/svc_winreg.c +++ b/source3/services/svc_winreg.c @@ -24,7 +24,7 @@ /********************************************************************* *********************************************************************/ -static WERROR winreg_stop( const char *service, SERVICE_STATUS *service_status ) +static WERROR winreg_stop( const char *service, struct SERVICE_STATUS *service_status ) { return WERR_ACCESS_DENIED; } @@ -40,7 +40,7 @@ static WERROR winreg_start( const char *service ) /********************************************************************* *********************************************************************/ -static WERROR winreg_status( const char *service, SERVICE_STATUS *service_status ) +static WERROR winreg_status( const char *service, struct SERVICE_STATUS *service_status ) { ZERO_STRUCTP( service_status ); |