From aeaa068ef78fb6fc1695d3bd6d7ee752aa80c2d0 Mon Sep 17 00:00:00 2001 From: Daniel-Constantin Mierla Date: Mon, 2 Jan 2017 15:13:57 +0100 Subject: [PATCH] pua_rpc: renamed rpc structure to avoid conflict with pua module --- src/modules/pua_rpc/pua_rpc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/pua_rpc/pua_rpc.c b/src/modules/pua_rpc/pua_rpc.c index 6acedfad747..07703be082e 100644 --- a/src/modules/pua_rpc/pua_rpc.c +++ b/src/modules/pua_rpc/pua_rpc.c @@ -284,7 +284,7 @@ static void pua_rpc_publish(rpc_t* rpc, void* c) } -rpc_export_t pua_rpc[] = { +rpc_export_t pua_rpc_ex[] = { {"pua.publish", pua_rpc_publish, publish_doc, 0}, {0, 0, 0, 0} }; @@ -294,7 +294,7 @@ rpc_export_t pua_rpc[] = { struct module_exports exports= { "pua_rpc", 0, - pua_rpc, + pua_rpc_ex, 0, mod_init, 0,