diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-15 16:25:06 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-15 16:25:06 +0200 |
commit | 5d408ccf83e0b95459fe5e8a9e31f685b0859973 (patch) | |
tree | 4ab5629c8e9df79c2415895bb6717e431f9377fc /source3/rpc_server/srv_initshutdown_nt.c | |
parent | 310dc3e42d4bc1e2cf30e28b506a37de277799ab (diff) | |
download | samba-5d408ccf83e0b95459fe5e8a9e31f685b0859973.tar.gz samba-5d408ccf83e0b95459fe5e8a9e31f685b0859973.tar.bz2 samba-5d408ccf83e0b95459fe5e8a9e31f685b0859973.zip |
Rename reboot -> do_reboot since the first is a reserved name on FreeBSD.
Diffstat (limited to 'source3/rpc_server/srv_initshutdown_nt.c')
-rw-r--r-- | source3/rpc_server/srv_initshutdown_nt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpc_server/srv_initshutdown_nt.c b/source3/rpc_server/srv_initshutdown_nt.c index f7d299830d..8b3ef52293 100644 --- a/source3/rpc_server/srv_initshutdown_nt.c +++ b/source3/rpc_server/srv_initshutdown_nt.c @@ -37,7 +37,7 @@ WERROR _initshutdown_Init(pipes_struct *p, struct initshutdown_Init *r) s.in.message = r->in.message; s.in.timeout = r->in.timeout; s.in.force_apps = r->in.force_apps; - s.in.reboot = r->in.reboot; + s.in.do_reboot = r->in.do_reboot; s.in.reason = 0; /* thunk down to _winreg_InitiateSystemShutdownEx() @@ -56,7 +56,7 @@ WERROR _initshutdown_InitEx(pipes_struct *p, struct initshutdown_InitEx *r) s.in.message = r->in.message; s.in.timeout = r->in.timeout; s.in.force_apps = r->in.force_apps; - s.in.reboot = r->in.reboot; + s.in.do_reboot = r->in.do_reboot; s.in.reason = r->in.reason; return _winreg_InitiateSystemShutdownEx( p, &s); |