diff options
author | Jeremy Allison <jra@samba.org> | 2007-10-19 00:40:51 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:43:20 +0100 |
commit | c940bec8d7ba06773c22fa3e73f873360ee23adb (patch) | |
tree | 6c29e5a257f895ddde8a173620133c67ac1dbb35 /source4/pidl/lib | |
parent | bd2bf8990a3bb3bbb91c9d1abcc2d424143ebeb5 (diff) | |
download | samba-c940bec8d7ba06773c22fa3e73f873360ee23adb.tar.gz samba-c940bec8d7ba06773c22fa3e73f873360ee23adb.tar.bz2 samba-c940bec8d7ba06773c22fa3e73f873360ee23adb.zip |
r25700: Now BOOL no longer exists in Samba 3.2, use bool instead.
Jeremy.
(This used to be commit ad0b9792f2dc91208a199060585c83ed7f622451)
Diffstat (limited to 'source4/pidl/lib')
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba3/ServerNDR.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/Samba3/ServerNDR.pm b/source4/pidl/lib/Parse/Pidl/Samba3/ServerNDR.pm index b3aa98ee0a..82cadd9bcc 100644 --- a/source4/pidl/lib/Parse/Pidl/Samba3/ServerNDR.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba3/ServerNDR.pm @@ -84,7 +84,7 @@ sub ParseFunction($$) my $op = "NDR_".uc($fn->{NAME}); - pidl "static BOOL api_$fn->{NAME}(pipes_struct *p)"; + pidl "static bool api_$fn->{NAME}(pipes_struct *p)"; pidl "{"; indent; pidl "const struct ndr_interface_call *call;"; |