diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-11-06 14:31:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:45:51 -0500 |
commit | cca42c611a3f39b18395bcc40b097c65dd3469ae (patch) | |
tree | 9770854c9a3baf35f29599f1fe5be8125e2b93eb /source4/pidl/lib/Parse/Pidl/NDR.pm | |
parent | 4c57d08c5291edd773db503736b6ae35bd5b04cb (diff) | |
download | samba-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/NDR.pm')
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/NDR.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/NDR.pm b/source4/pidl/lib/Parse/Pidl/NDR.pm index 8405873589..882ebeccb5 100644 --- a/source4/pidl/lib/Parse/Pidl/NDR.pm +++ b/source4/pidl/lib/Parse/Pidl/NDR.pm @@ -610,7 +610,7 @@ sub ParseInterface($) return { NAME => $idl->{NAME}, - UUID => has_property($idl, "uuid"), + UUID => lc(has_property($idl, "uuid")), VERSION => $version, TYPE => "INTERFACE", PROPERTIES => $idl->{PROPERTIES}, |