From 282375791297b83806d9d9ed6e47b5408e3da850 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 5 Aug 2009 13:04:59 +0200 Subject: epmapper.idl: avoid usage of 'pipe', this is a reserved word in IDL We now use 'named_pipe' instead. metze --- librpc/idl/epmapper.idl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/librpc/idl/epmapper.idl b/librpc/idl/epmapper.idl index 0a110a1780..3d9113892b 100644 --- a/librpc/idl/epmapper.idl +++ b/librpc/idl/epmapper.idl @@ -52,7 +52,7 @@ interface epmapper EPM_PROTOCOL_UUID = 0x0d, EPM_PROTOCOL_IPX = 0x0e, EPM_PROTOCOL_SMB = 0x0f, - EPM_PROTOCOL_PIPE = 0x10, + EPM_PROTOCOL_NAMED_PIPE = 0x10, EPM_PROTOCOL_NETBIOS = 0x11, EPM_PROTOCOL_NETBEUI = 0x12, EPM_PROTOCOL_SPX = 0x13, @@ -113,8 +113,8 @@ interface epmapper } epm_rhs_smb; typedef struct { - astring path; - } epm_rhs_pipe; + astring path; + } epm_rhs_named_pipe; typedef struct { astring name; @@ -178,7 +178,7 @@ interface epmapper [case(EPM_PROTOCOL_UUID)] epm_rhs_uuid uuid; [case(EPM_PROTOCOL_IPX)] epm_rhs_ipx ipx; [case(EPM_PROTOCOL_SMB)] epm_rhs_smb smb; - [case(EPM_PROTOCOL_PIPE)] epm_rhs_pipe pipe; + [case(EPM_PROTOCOL_NAMED_PIPE)] epm_rhs_named_pipe named_pipe; [case(EPM_PROTOCOL_NETBIOS)] epm_rhs_netbios netbios; [case(EPM_PROTOCOL_NETBEUI)] epm_rhs_netbeui netbeui; [case(EPM_PROTOCOL_SPX)] epm_rhs_spx spx; -- cgit