From 5cb18618bc9de4cc75be8199d20ebdf35cc0ccc2 Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Sun, 26 Jun 2011 18:47:33 +1000 Subject: [PATCH] for portmap callit, change call_args and rell_result to prefix them with pmap_ to avoid polluting the namespace too bad --- portmap/portmap.x | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/portmap/portmap.x b/portmap/portmap.x index d28edca..6065831 100644 --- a/portmap/portmap.x +++ b/portmap/portmap.x @@ -11,14 +11,14 @@ struct pmap_mapping { unsigned int port; }; -struct call_args { +struct pmap_call_args { unsigned int prog; unsigned int vers; unsigned int proc; opaque args<>; }; -struct call_result { +struct pmap_call_result { unsigned int port; opaque res<>; }; @@ -37,8 +37,8 @@ program PMAP_PROGRAM { unsigned int PMAP_GETPORT(pmap_mapping) = 3; - call_result - PMAP_CALLIT(call_args) = 5; + pmap_call_result + PMAP_CALLIT(pmap_call_args) = 5; } = 2; } = 100000; -- 2.34.1