summaryrefslogtreecommitdiff
path: root/source3/rpc_server/srv_winreg_nt.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-10-15 16:25:06 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-10-15 16:25:06 +0200
commit5d408ccf83e0b95459fe5e8a9e31f685b0859973 (patch)
tree4ab5629c8e9df79c2415895bb6717e431f9377fc /source3/rpc_server/srv_winreg_nt.c
parent310dc3e42d4bc1e2cf30e28b506a37de277799ab (diff)
downloadsamba-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_winreg_nt.c')
-rw-r--r--source3/rpc_server/srv_winreg_nt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpc_server/srv_winreg_nt.c b/source3/rpc_server/srv_winreg_nt.c
index b3aef270f3..3a03f1809a 100644
--- a/source3/rpc_server/srv_winreg_nt.c
+++ b/source3/rpc_server/srv_winreg_nt.c
@@ -475,7 +475,7 @@ WERROR _winreg_InitiateSystemShutdown(pipes_struct *p, struct winreg_InitiateSys
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()
@@ -526,7 +526,7 @@ WERROR _winreg_InitiateSystemShutdownEx(pipes_struct *p, struct winreg_InitiateS
}
fstr_sprintf(str_timeout, "%d", r->in.timeout);
- fstr_sprintf(do_reboot, r->in.reboot ? SHUTDOWN_R_STRING : "");
+ fstr_sprintf(do_reboot, r->in.do_reboot ? SHUTDOWN_R_STRING : "");
fstr_sprintf(f, r->in.force_apps ? SHUTDOWN_F_STRING : "");
fstr_sprintf(str_reason, "%d", r->in.reason );