summaryrefslogtreecommitdiff
path: root/source4/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-11-06 14:31:01 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:45:51 -0500
commitcca42c611a3f39b18395bcc40b097c65dd3469ae (patch)
tree9770854c9a3baf35f29599f1fe5be8125e2b93eb /source4/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm
parent4c57d08c5291edd773db503736b6ae35bd5b04cb (diff)
downloadsamba-cca42c611a3f39b18395bcc40b097c65dd3469ae.tar.gz
samba-cca42c611a3f39b18395bcc40b097c65dd3469ae.tar.bz2
samba-cca42c611a3f39b18395bcc40b097c65dd3469ae.zip
r11539: Fix indentation in templates. Always generate lower-case
UUID strings as GUID_from_string seems to have trouble with uppercased ones. (This used to be commit 16ea96c81ed88f197007335f442c9e62b4ccd6de)
Diffstat (limited to 'source4/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm')
-rw-r--r--source4/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm b/source4/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm
index daf7ba0238..dd1848152e 100644
--- a/source4/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm
+++ b/source4/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm
@@ -99,7 +99,7 @@ sub HeaderInterface($)
if (defined $interface->{PROPERTIES}->{uuid}) {
my $name = uc $interface->{NAME};
pidl "#define DCERPC_$name\_UUID " .
- Parse::Pidl::Util::make_str($interface->{PROPERTIES}->{uuid}) . "\n";
+ Parse::Pidl::Util::make_str(lc($interface->{PROPERTIES}->{uuid})) . "\n";
if(!defined $interface->{PROPERTIES}->{version}) { $interface->{PROPERTIES}->{version} = "0.0"; }
pidl "#define DCERPC_$name\_VERSION $interface->{PROPERTIES}->{version}\n";