X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fvconn-unix.c;h=f637ca0e176e3e80a9bde17aed85aded2553e2b1;hb=ef5e2fe54d0a54a66f9c696be532ced8db9110fc;hp=f24c84640b2a0bfbabc99cf58accc3d415ded6a0;hpb=576e26d7b47f4e53116ef0b5f035d260f426d37b;p=openvswitch diff --git a/lib/vconn-unix.c b/lib/vconn-unix.c index f24c8464..f637ca0e 100644 --- a/lib/vconn-unix.c +++ b/lib/vconn-unix.c @@ -90,12 +90,6 @@ punix_open(const char *name UNUSED, char *suffix, struct pvconn **pvconnp) return errno; } - error = set_nonblocking(fd); - if (error) { - close(fd); - return error; - } - if (listen(fd, 10) < 0) { error = errno; VLOG_ERR("%s: listen: %s", name, strerror(error));