Add OCMB SBE dump support

OCMB SBE dump is another SBE dump with a different dump id prefix.
Adding support for detecting the OCMB SBE dump and passing to
dump-collect application to collect the right dump.

Change-Id: Ic11f55fc1ef8bd099cec685ec24c2781e1c42fec
Signed-off-by: Dhruvaraj Subhashchandran <dhruvaraj@in.ibm.com>
diff --git a/dump/dump_monitor.hpp b/dump/dump_monitor.hpp
index b499dba..0de3d0e 100644
--- a/dump/dump_monitor.hpp
+++ b/dump/dump_monitor.hpp
@@ -129,6 +129,10 @@
         {
             return SBE_DUMP_TYPE_SBE;
         }
+        else if (type == 4)
+        {
+            return SBE_DUMP_TYPE_MSBE;
+        }
         return 0;
     }