summaryrefslogtreecommitdiff
path: root/source4/build/pidl/util.pm
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-11-21 02:19:09 +0000
committerAndrew Tridgell <tridge@samba.org>2003-11-21 02:19:09 +0000
commit9fc7be869be366bb19e163b8c317489abca5ae36 (patch)
tree419a2d3950b9404952f11b0bb96342307e2d9964 /source4/build/pidl/util.pm
parentd869d8c8eb532d89721c5deaf17f092a3b729162 (diff)
downloadsamba-9fc7be869be366bb19e163b8c317489abca5ae36.tar.gz
samba-9fc7be869be366bb19e163b8c317489abca5ae36.tar.bz2
samba-9fc7be869be366bb19e163b8c317489abca5ae36.zip
added support for 'ascstr', a ascii string in MSRPC !
(This used to be commit a5eeb3be0577e0ce91ac1f6e641782e4acbbda07)
Diffstat (limited to 'source4/build/pidl/util.pm')
-rw-r--r--source4/build/pidl/util.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/build/pidl/util.pm b/source4/build/pidl/util.pm
index c3f46dc817..566253699d 100644
--- a/source4/build/pidl/util.pm
+++ b/source4/build/pidl/util.pm
@@ -223,7 +223,7 @@ sub is_builtin_type($)
return 1, if (is_scalar_type($type));
return 1, if ($type =~ "unistr.*");
- return 1, if ($type eq "policy_handle");
+ return 1, if ($type =~ "ascstr.*");
return 0;
}
@@ -329,6 +329,7 @@ sub c_pull_prefix($)
if ($e->{TYPE} =~ "unistr.*" ||
$e->{TYPE} =~ "nstring.*" ||
+ $e->{TYPE} =~ "ascstr.*" ||
$e->{TYPE} =~ "lstring.*") {
return "&";
}