From 863a6aa07e543e30f2075a597129f6c39222beef Mon Sep 17 00:00:00 2001 From: Zach Loafman Date: Thu, 3 Jul 2008 12:21:33 -0700 Subject: Fix warnings on FreeBSD-based platforms Fix two shadowed declaration warnings on FreeBSD-based platform: 'reboot' is a 4.0BSD syscall in unistd.h and 'tcp_seq' is a typedef in netinet/tcp.h. (This used to be commit 14d2a4da1da38d6f69c63505d35990322f253e5d) --- source3/librpc/idl/winreg.idl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/librpc/idl/winreg.idl') diff --git a/source3/librpc/idl/winreg.idl b/source3/librpc/idl/winreg.idl index 2183a2cb2d..2f02419af5 100644 --- a/source3/librpc/idl/winreg.idl +++ b/source3/librpc/idl/winreg.idl @@ -307,7 +307,7 @@ import "lsa.idl", "initshutdown.idl", "security.idl"; [in,unique] initshutdown_String *message, [in] uint32 timeout, [in] uint8 force_apps, - [in] uint8 reboot + [in] uint8 do_reboot ); /******************/ @@ -363,7 +363,7 @@ import "lsa.idl", "initshutdown.idl", "security.idl"; [in,unique] initshutdown_String *message, [in] uint32 timeout, [in] uint8 force_apps, - [in] uint8 reboot, + [in] uint8 do_reboot, [in] uint32 reason ); -- cgit