diff options
Diffstat (limited to 'proto/pipe/pipe.c')
-rw-r--r-- | proto/pipe/pipe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/pipe/pipe.c b/proto/pipe/pipe.c index f991d09a..cc4b5a07 100644 --- a/proto/pipe/pipe.c +++ b/proto/pipe/pipe.c @@ -101,9 +101,9 @@ pipe_rt_notify(struct proto *P, struct channel *src_ch, net *n, rte *new, rte *o } static int -pipe_preexport(struct proto *P, rte **ee, struct linpool *p UNUSED) +pipe_preexport(struct proto *P, rte *e) { - struct proto *pp = (*ee)->sender->proto; + struct proto *pp = e->sender->proto; if (pp == P) return -1; /* Avoid local loops automatically */ |