Fix copy/paste naming issue.
authorJustin Pettit <jpettit@nicira.com>
Thu, 12 Mar 2009 01:24:19 +0000 (18:24 -0700)
committerJustin Pettit <jpettit@nicira.com>
Thu, 12 Mar 2009 01:43:45 +0000 (18:43 -0700)
vswitchd/mgmt.c

index 4a0de348eae27fa1c0663b1d14f18492089a073e..8d822d85641dd6beba544c5fff73c4a2caca491f 100644 (file)
@@ -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) {