summaryrefslogtreecommitdiff
path: root/lib/unixctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/unixctl.c')
-rw-r--r--lib/unixctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/unixctl.c b/lib/unixctl.c
index 5749293ba..9fb2e85b6 100644
--- a/lib/unixctl.c
+++ b/lib/unixctl.c
@@ -44,7 +44,7 @@ struct unixctl_command {
};
struct unixctl_conn {
- struct list node;
+ struct ovs_list node;
struct jsonrpc *rpc;
/* Only one request can be in progress at a time. While the request is
@@ -55,7 +55,7 @@ struct unixctl_conn {
/* Server for control connection. */
struct unixctl_server {
struct pstream *listener;
- struct list conns;
+ struct ovs_list conns;
};
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 5);