From 71fceeb0dac5d08daab53a9060cb10324b1abc0c Mon Sep 17 00:00:00 2001 From: Justin Pettit Date: Mon, 6 May 2013 21:30:26 -0700 Subject: [PATCH] ovsdb-client: Fix recently introduced svec_sort() bug. Commit 66980be9 (ovsdb-client: Avoid assertion with multiple databases.) passed in a pointer to an svec pointer, when it should have just been an svec pointer. This corrects the bug. Signed-off-by: Justin Pettit --- ovsdb/ovsdb-client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ovsdb/ovsdb-client.c b/ovsdb/ovsdb-client.c index 81dcc779b..c25148d48 100644 --- a/ovsdb/ovsdb-client.c +++ b/ovsdb/ovsdb-client.c @@ -392,7 +392,7 @@ fetch_dbs(struct jsonrpc *rpc, struct svec *dbs) svec_add(dbs, name->u.string); } jsonrpc_msg_destroy(reply); - svec_sort(&dbs); + svec_sort(dbs); } static void -- 2.43.0