ovs-vsctl: Allow "get" commands to create @names also.
[openvswitch] / lib / stream-fd.c
index 9410009c45221fd6a3336f0669552cf748610076..ef4dc8d9112eae8d625016b0788f8cd9acc448f4 100644 (file)
@@ -214,7 +214,7 @@ pfd_accept(struct pstream *pstream, struct stream **new_streamp)
 
     new_fd = accept(ps->fd, (struct sockaddr *) &ss, &ss_len);
     if (new_fd < 0) {
-        int retval = errno;
+        retval = errno;
         if (retval != EAGAIN) {
             VLOG_DBG_RL(&rl, "accept: %s", strerror(retval));
         }