From 2b4ee5c418729f0b25e7127f4e2c311de55fd047 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 8dcff6bbd..eb99dc044 100644 --- a/ovsdb/ovsdb-client.c +++ b/ovsdb/ovsdb-client.c @@ -393,7 +393,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.20.1