You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ge...@apache.org on 2010/01/29 05:50:27 UTC

svn commit: r904384 - /incubator/trafficserver/traffic/branches/dev/proxy/mgmt2/LocalManager.cc

Author: georgep
Date: Fri Jan 29 04:50:27 2010
New Revision: 904384

URL: http://svn.apache.org/viewvc?rev=904384&view=rev
Log:
TS-123: This patch 'TS123_patch1.diff' fixes incorrect check for http being enabled in Traffic Manager. 

Modified:
    incubator/trafficserver/traffic/branches/dev/proxy/mgmt2/LocalManager.cc

Modified: incubator/trafficserver/traffic/branches/dev/proxy/mgmt2/LocalManager.cc
URL: http://svn.apache.org/viewvc/incubator/trafficserver/traffic/branches/dev/proxy/mgmt2/LocalManager.cc?rev=904384&r1=904383&r2=904384&view=diff
==============================================================================
--- incubator/trafficserver/traffic/branches/dev/proxy/mgmt2/LocalManager.cc (original)
+++ incubator/trafficserver/traffic/branches/dev/proxy/mgmt2/LocalManager.cc Fri Jan 29 04:50:27 2010
@@ -267,7 +267,7 @@
   int pnum = 0;
   RecInt http_enabled = REC_readInteger("proxy.config.http.enabled", &found);
   ink_debug_assert(found);
-  if (http_enabled && !found) {
+  if (http_enabled && found) {
     int port = (int) REC_readInteger("proxy.config.http.server_port", &found);
     if (found) {
       proxy_server_port[pnum] = port;