aboutsummaryrefslogtreecommitdiff
path: root/src/core/pipe.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/pipe.c')
-rw-r--r--src/core/pipe.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/core/pipe.c b/src/core/pipe.c
index 40720906..a4148c65 100644
--- a/src/core/pipe.c
+++ b/src/core/pipe.c
@@ -297,11 +297,7 @@ nni_pipe_getopt(nni_pipe *p, const char *name, void *val, size_t *szp, int typ)
if (strcmp(po->po_name, name) != 0) {
continue;
}
- if ((typ != NNI_TYPE_OPAQUE) &&
- (po->po_type != NNI_TYPE_OPAQUE) && (typ != po->po_type)) {
- return (NNG_EBADTYPE);
- }
- return (po->po_getopt(p->p_tran_data, val, szp));
+ return (po->po_getopt(p->p_tran_data, val, szp, typ));
}
// Maybe the endpoint knows?
return (nni_ep_getopt(p->p_ep, name, val, szp, typ));