X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fvconn-stream.c;h=6d3825518b76690720bfb84a6654029b7c0e15df;hb=63920cb960ffe2c494f73982f6ea073a4dc3460d;hp=a9fcd98df621643215b1c831eb15f9a0dcef3d10;hpb=a14bc59fb8f27db193d74662dc9c5cb8237177ef;p=openvswitch diff --git a/lib/vconn-stream.c b/lib/vconn-stream.c index a9fcd98d..6d382551 100644 --- a/lib/vconn-stream.c +++ b/lib/vconn-stream.c @@ -54,13 +54,13 @@ static void stream_clear_txbuf(struct stream_vconn *); int new_stream_vconn(const char *name, int fd, int connect_status, - uint32_t ip, bool reconnectable, struct vconn **vconnp) + bool reconnectable, struct vconn **vconnp) { struct stream_vconn *s; s = xmalloc(sizeof *s); - vconn_init(&s->vconn, &stream_vconn_class, connect_status, ip, name, - reconnectable); + vconn_init(&s->vconn, &stream_vconn_class, connect_status, + name, reconnectable); s->fd = fd; s->txbuf = NULL; s->tx_waiter = NULL;