diff options
author | Richard Sharpe <sharpe@samba.org> | 2003-01-13 20:30:28 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@samba.org> | 2003-01-13 20:30:28 +0000 |
commit | 5bbac9dd802cc7a5a5b8a3c6edc4f1cee90c9de7 (patch) | |
tree | 66e4e0407c8c6720489d8e9262f32533b1553f9a /source3/rpc_parse/parse_reg.c | |
parent | 8a78a0a27ae5fdf43f137ea3c9fcd6dc4862a70f (diff) | |
download | samba-5bbac9dd802cc7a5a5b8a3c6edc4f1cee90c9de7.tar.gz samba-5bbac9dd802cc7a5a5b8a3c6edc4f1cee90c9de7.tar.bz2 samba-5bbac9dd802cc7a5a5b8a3c6edc4f1cee90c9de7.zip |
Make sure that those cleanups actually went in.
(This used to be commit 9a38e378115a1c36d0cd7c41f4c5767c23b4eb3f)
Diffstat (limited to 'source3/rpc_parse/parse_reg.c')
-rw-r--r-- | source3/rpc_parse/parse_reg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpc_parse/parse_reg.c b/source3/rpc_parse/parse_reg.c index 456fad69b4..bb9bda5cc2 100644 --- a/source3/rpc_parse/parse_reg.c +++ b/source3/rpc_parse/parse_reg.c @@ -1737,7 +1737,7 @@ BOOL reg_io_r_open_entry(const char *desc, REG_R_OPEN_ENTRY *r_r, prs_struct *p Inits a structure. ********************************************************************/ void init_reg_q_shutdown(REG_Q_SHUTDOWN * q_s, const char *msg, - uint32 timeout, BOOL reboot, BOOL force) + uint32 timeout, BOOL do_reboot, BOOL force) { int msg_len; msg_len = strlen(msg); @@ -1751,7 +1751,7 @@ void init_reg_q_shutdown(REG_Q_SHUTDOWN * q_s, const char *msg, q_s->timeout = timeout; - q_s->reboot = reboot ? 1 : 0; + q_s->do_reboot = reboot ? 1 : 0; q_s->force = force ? 1 : 0; } |