From: Justin Pettit Date: Thu, 12 Mar 2009 01:24:19 +0000 (-0700) Subject: Fix copy/paste naming issue. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea08996a3b20eb8cf5352e63b4a221b3e59c6232;p=openvswitch Fix copy/paste naming issue. --- diff --git a/vswitchd/mgmt.c b/vswitchd/mgmt.c index 4a0de348..8d822d85 100644 --- a/vswitchd/mgmt.c +++ b/vswitchd/mgmt.c @@ -101,10 +101,8 @@ config_string_change(const char *key, char **valuep) } static void -bridge_configure_ssl(void) +mgmt_configure_ssl(void) { - /* XXX SSL should be configurable on a per-bridge basis. - * XXX should be possible to de-configure SSL. */ static char *private_key_file; static char *certificate_file; static char *cacert_file; @@ -202,7 +200,7 @@ mgmt_reconfigure(void) #ifdef HAVE_OPENSSL /* Configure SSL. */ - bridge_configure_ssl(); + mgmt_configure_ssl(); #endif if (mgmt_rconn) {