Fix SOL over SSH service control

According to Intel BMC EPS, byte 2 bit 6 of control BMC Service command
(0x30 0xB1) controls SOL over SSH service. But now it controls the SOL
service, meaning that disabling it will also disable other SOL services
like SOL over RMCP+ and SOL on web, while SOL SSH port is still open
and accepts incoming connections. This patch fixes this issue by only
disabling the SOL SSH service.

Tested:
* Disabling SOL over SSH will stop the SOL SSH service and all existing
  SOL SSH connections are closed. The port is also closed.
* After disabling SOL SSH service, SOL can still be connected from web.

Change-Id: I4f4001805a636ea33168327be806afba1328fcc4
Signed-off-by: Jiaqing Zhao <jiaqing.zhao@intel.com>
diff --git a/src/bmccontrolservices.cpp b/src/bmccontrolservices.cpp
index a08a270..17c850a 100644
--- a/src/bmccontrolservices.cpp
+++ b/src/bmccontrolservices.cpp
@@ -37,7 +37,8 @@
     {rmcpServiceBitPos,
      "/xyz/openbmc_project/control/service/phosphor_2dipmi_2dnet"},
     {webServiceBitPos, "/xyz/openbmc_project/control/service/bmcweb"},
-    {solServiceBitPos, "/xyz/openbmc_project/control/service/obmc_2dconsole"},
+    {solServiceBitPos,
+     "/xyz/openbmc_project/control/service/obmc_2dconsole_2dssh"},
     {kvmServiceBitPos, "/xyz/openbmc_project/control/service/start_2dipkvm"},
 };