diff options
| author | Garrett D'Amore <garrett@damore.org> | 2021-07-11 12:01:26 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2021-07-11 12:01:26 -0700 |
| commit | 5f7b7d7bd63838a7e7f798c5a8412d6f5f9d44f4 (patch) | |
| tree | 8d14b20f4561fd02ca137f9e7ea7254200893fb4 /src/sp/transport/ipc | |
| parent | facfd16307feff9fab997b3919b71780d1f174c8 (diff) | |
| download | nng-5f7b7d7bd63838a7e7f798c5a8412d6f5f9d44f4.tar.gz nng-5f7b7d7bd63838a7e7f798c5a8412d6f5f9d44f4.tar.bz2 nng-5f7b7d7bd63838a7e7f798c5a8412d6f5f9d44f4.zip | |
More symbol renaming
Diffstat (limited to 'src/sp/transport/ipc')
| -rw-r--r-- | src/sp/transport/ipc/ipc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sp/transport/ipc/ipc.c b/src/sp/transport/ipc/ipc.c index d6b473ec..ef597c5d 100644 --- a/src/sp/transport/ipc/ipc.c +++ b/src/sp/transport/ipc/ipc.c @@ -1156,12 +1156,12 @@ int nng_ipc_register(void) { int rv; - if (((rv = nni_tran_register(&ipc_tran)) != 0) + if (((rv = nni_sp_tran_register(&ipc_tran)) != 0) #ifdef NNG_PLATFORM_POSIX - || ((rv = nni_tran_register(&ipc_tran_unix)) != 0) + || ((rv = nni_sp_tran_register(&ipc_tran_unix)) != 0) #endif #ifdef NNG_HAVE_ABSTRACT_SOCKETS - || ((rv = nni_tran_register(&ipc_tran_abstract)) != 0) + || ((rv = nni_sp_tran_register(&ipc_tran_abstract)) != 0) #endif ) { return (rv); |
