diff options
Diffstat (limited to 'proxy/src/gp_rpc_process.c')
-rw-r--r-- | proxy/src/gp_rpc_process.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/proxy/src/gp_rpc_process.c b/proxy/src/gp_rpc_process.c index f4ad2f8..d1a0232 100644 --- a/proxy/src/gp_rpc_process.c +++ b/proxy/src/gp_rpc_process.c @@ -313,9 +313,10 @@ static const char *gp_rpc_procname(uint32_t proc) static int gp_rpc_execute(struct gp_call_ctx *gpcall, uint32_t proc, union gp_rpc_arg *arg, union gp_rpc_res *res) { - GPDEBUG("gp_rpc_execute: executing %d (%s) for service \"%s\", euid: %d, socket: %s\n", - proc, gp_rpc_procname(proc), gpcall->service->name, - gp_conn_get_uid(gpcall->connection), gpcall->service->socket); + GPDEBUG("gp_rpc_execute: executing %d (%s) for service \"%s\", euid: %d," + "socket: %s\n", proc, gp_rpc_procname(proc), + gpcall->service->name, gp_conn_get_uid(gpcall->connection), + gpcall->service->socket); return gp_xdr_set[proc].exec_fn(gpcall, arg, res); } |