summaryrefslogtreecommitdiff
path: root/pidl
diff options
context:
space:
mode:
authorAurelien Aptel <aaptel@suse.com>2016-02-09 15:32:51 +0100
committerStefan Metzmacher <metze@samba.org>2016-06-20 12:08:20 +0200
commitad99cfb9c5414e8d31b89184a1e666f3f12125ab (patch)
treedbd974eae77a8dd2d091286eb59a386710a6ba96 /pidl
parentfda6c784fd7420cbc4bacdff00be02ff574b16a3 (diff)
downloadsamba-ad99cfb9c5414e8d31b89184a1e666f3f12125ab.tar.gz
pidl/ws: Eliminate e_uuid_t in favor of e_guid_t
Port Wireshark commit 499d959 Author: Guy Harris <guy@alum.mit.edu> Date: Tue Mar 3 02:47:53 2015 -0800 Eliminate e_uuid_t in favor of e_guid_t. That eliminates a redundant and confusing data type, and avoids issues with one piece of code using e_uuid_t but wanting to use routines expecting an e_guid_t. Change-Id: I95e172d46d342ab40f6254300ecbd2a0530cde60 Reviewed-on: https://code.wireshark.org/review/7506 Reviewed-by: Guy Harris <guy@alum.mit.edu> Signed-off-by: Aurelien Aptel <aaptel@suse.com> Reviewed-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: David Disseldorp <ddiss@samba.org>
Diffstat (limited to 'pidl')
-rw-r--r--pidl/lib/Parse/Pidl/Wireshark/NDR.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/pidl/lib/Parse/Pidl/Wireshark/NDR.pm b/pidl/lib/Parse/Pidl/Wireshark/NDR.pm
index 547389a54c4..573d77d5547 100644
--- a/pidl/lib/Parse/Pidl/Wireshark/NDR.pm
+++ b/pidl/lib/Parse/Pidl/Wireshark/NDR.pm
@@ -966,7 +966,7 @@ sub ProcessInterface($$)
$self->pidl_def("/* Version information */\n\n");
- $self->pidl_def("static e_uuid_t uuid_dcerpc_$x->{NAME} = {");
+ $self->pidl_def("static e_guid_t uuid_dcerpc_$x->{NAME} = {");
$self->pidl_def("\t0x" . substr($if_uuid, 1, 8)
. ", 0x" . substr($if_uuid, 10, 4)
. ", 0x" . substr($if_uuid, 15, 4) . ",");