summaryrefslogtreecommitdiff
path: root/source4/build
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2004-11-01 12:40:43 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:05:10 -0500
commit6ef03e7a846a4b858eec0b9953f03306f46b77e3 (patch)
tree2a4e9b7650cc7de99711b475b5e511dc8f51e70f /source4/build
parenta78c26beaa22aa655b6c094475019d29825dd77c (diff)
downloadsamba-6ef03e7a846a4b858eec0b9953f03306f46b77e3.tar.gz
samba-6ef03e7a846a4b858eec0b9953f03306f46b77e3.tar.bz2
samba-6ef03e7a846a4b858eec0b9953f03306f46b77e3.zip
r3432: Support WERROR's in arguments (not just as return type). Some of
the DCOM calls are wrappers around several local calls, so you get things like: WERROR foobar ( [in] int num_ifaces, [in,size_is(num_ifaces)] IID *ifaces, [out,size_is(num_ifaces)] WERROR *results); (This used to be commit 0873bf2cbe3589988e518cf68ad4d14343b9240b)
Diffstat (limited to 'source4/build')
-rw-r--r--source4/build/pidl/util.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/pidl/util.pm b/source4/build/pidl/util.pm
index 5fbca25220..c49e956e50 100644
--- a/source4/build/pidl/util.pm
+++ b/source4/build/pidl/util.pm
@@ -191,7 +191,7 @@ sub is_scalar_type($)
}
if ($type =~ /char|short|long|NTTIME|
time_t|error_status_t|boolean32|unsigned32|
- HYPER_T|wchar_t|DATA_BLOB/x) {
+ HYPER_T|wchar_t|DATA_BLOB|WERROR/x) {
return 1;
}