Bug 537160 - NPE in
org.eclipse.equinox.http.jetty.internal.HttpServerManager.updated() with
HTTPS

Change-Id: Ia0c3ea4b0585254e355fd0d2d45386e24b8eef87
Signed-off-by: Anjum Fatima <anjum.eclipse@gmail.com>
diff --git a/bundles/org.eclipse.equinox.http.jetty/src/org/eclipse/equinox/http/jetty/internal/HttpServerManager.java b/bundles/org.eclipse.equinox.http.jetty/src/org/eclipse/equinox/http/jetty/internal/HttpServerManager.java
index 94c3f96..e3590d8 100644
--- a/bundles/org.eclipse.equinox.http.jetty/src/org/eclipse/equinox/http/jetty/internal/HttpServerManager.java
+++ b/bundles/org.eclipse.equinox.http.jetty/src/org/eclipse/equinox/http/jetty/internal/HttpServerManager.java
@@ -134,7 +134,7 @@
 			if (port == -1)
 				port = httpsConnector.getPort();
 			holder.setInitParameter(JettyConstants.HTTPS_PORT, Integer.toString(port));
-			String host = httpConnector.getHost();
+			String host = httpsConnector.getHost();
 			if (host != null)
 				holder.setInitParameter(JettyConstants.HTTPS_HOST, host);
 		}