X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fvconn-stream.c;h=b38c568686362b90d18bcf343b299d0c039be0dc;hb=8398cf7efc3979cd6c8152915a584c13873ee322;hp=f5a8602a09401b987bb0b5c7405221528c10d079;hpb=e3fdfed11b8c56aa6a8deffe11a552fed7e7adbc;p=openvswitch diff --git a/lib/vconn-stream.c b/lib/vconn-stream.c index f5a8602a..b38c5686 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;