diff options
author | Gerald Carter <jerry@samba.org> | 2005-12-11 04:41:54 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:05:48 -0500 |
commit | 7cd1af4a639b0852df25fe936519c9613b342dca (patch) | |
tree | ba718f013b392a790695bedd419704ace6e1ae95 /source3 | |
parent | 143103954cf80c211b7799ebfd4f9ad12ff7c420 (diff) | |
download | samba-7cd1af4a639b0852df25fe936519c9613b342dca.tar.gz samba-7cd1af4a639b0852df25fe936519c9613b342dca.tar.bz2 samba-7cd1af4a639b0852df25fe936519c9613b342dca.zip |
r12176: fix type mismatch after rpc structure change in rpc_svcctl.h
(This used to be commit ba67d3ae0430abc196d245218556c23002e52076)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/rpc_parse/parse_svcctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_parse/parse_svcctl.c b/source3/rpc_parse/parse_svcctl.c index e1a7ad8427..dd0c68bd79 100644 --- a/source3/rpc_parse/parse_svcctl.c +++ b/source3/rpc_parse/parse_svcctl.c @@ -41,7 +41,7 @@ static BOOL svcctl_io_service_status( const char *desc, SERVICE_STATUS *status, if(!prs_uint32("controls_accepted", ps, depth, &status->controls_accepted)) return False; - if(!prs_uint32("win32_exit_code", ps, depth, &status->win32_exit_code)) + if(!prs_werror("win32_exit_code", ps, depth, &status->win32_exit_code)) return False; if(!prs_uint32("service_exit_code", ps, depth, &status->service_exit_code)) |