diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-08-05 13:04:59 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-08-07 11:50:23 +0200 |
commit | 282375791297b83806d9d9ed6e47b5408e3da850 (patch) | |
tree | d0f05abb679b91d0b059e0a166cfba603e9378ef | |
parent | 8e419aab48ace1fe0d075e2a25935e650805a23c (diff) | |
download | samba-282375791297b83806d9d9ed6e47b5408e3da850.tar.gz samba-282375791297b83806d9d9ed6e47b5408e3da850.tar.bz2 samba-282375791297b83806d9d9ed6e47b5408e3da850.zip |
epmapper.idl: avoid usage of 'pipe', this is a reserved word in IDL
We now use 'named_pipe' instead.
metze
-rw-r--r-- | librpc/idl/epmapper.idl | 8 |
1 files 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; |