diff options
Diffstat (limited to 'src/sp')
| -rw-r--r-- | src/sp/transport/inproc/inproc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sp/transport/inproc/inproc.c b/src/sp/transport/inproc/inproc.c index 5216b5e6..6a3e3ee3 100644 --- a/src/sp/transport/inproc/inproc.c +++ b/src/sp/transport/inproc/inproc.c @@ -299,7 +299,7 @@ inproc_dialer_init(void **epp, nng_url *url, nni_dialer *ndialer) NNI_LIST_INIT(&ep->clients, inproc_ep, node); nni_aio_list_init(&ep->aios); - ep->addr = url->u_rawurl; // we match on the full URL. + ep->addr = url->u_path; // we match on the URL path. *epp = ep; return (0); @@ -322,7 +322,7 @@ inproc_listener_init(void **epp, nng_url *url, nni_listener *nlistener) NNI_LIST_INIT(&ep->clients, inproc_ep, node); nni_aio_list_init(&ep->aios); - ep->addr = url->u_rawurl; // we match on the full URL. + ep->addr = url->u_path; // we match on the path *epp = ep; return (0); |
