Skip to content
Snippets Groups Projects
Commit 1a517858 authored by Ondřej Zajíček's avatar Ondřej Zajíček
Browse files

Fixes unnecessary pipe restart during configure.

parent 6877ff73
Branches
Tags
No related merge requests found
......@@ -211,7 +211,7 @@ pipe_reconfigure(struct proto *p, struct proto_config *new)
struct pipe_config *o = (struct pipe_config *) p->cf;
struct pipe_config *n = (struct pipe_config *) new;
return (o->peer == n->peer) && (o->mode == n->mode);
return (o->peer->table == n->peer->table) && (o->mode == n->mode);
}
struct protocol proto_pipe = {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment