"warning: 'parse_db_string_column' defined but not used"
This commit fixes the above warning when compiling on systems which
do not have SSL support. It also causes query_db_string() to
always be compiled on these systems as it is not SSL specific and
may be useful in the future.
---
ovsdb/ovsdb-server.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/ovsdb/ovsdb-server.c b/ovsdb/ovsdb-server.c
index 1dc9b7d..3a06c5f 100644
--- a/ovsdb/ovsdb-server.c
+++ b/ovsdb/ovsdb-server.c
@@ -63,6 +63,9 @@ static unixctl_cb_func ovsdb_server_exit;
static unixctl_cb_func ovsdb_server_compact;
static unixctl_cb_func ovsdb_server_reconnect;
+static const char *query_db_string(const struct ovsdb *,
+ const char *name) OVS_UNUSED;
+
static void parse_options(int argc, char *argv[], char **file_namep,
struct shash *remotes, char **unixctl_pathp,
char **run_command);
@@ -242,7 +245,6 @@ parse_db_string_column(const struct ovsdb *db,
*tablep = table;
}
-#if HAVE_OPENSSL
static const char *
query_db_string(const struct ovsdb *db, const char *name)
{
@@ -269,7 +271,6 @@ query_db_string(const struct ovsdb *db, const char *name)
return NULL;
}
}
-#endif /* HAVE_OPENSSL */
static struct ovsdb_jsonrpc_options *
add_remote(struct shash *remotes, const char *target)
--
1.7.4
_______________________________________________
dev mailing list
[email protected]
http://openvswitch.org/mailman/listinfo/dev_openvswitch.org