s/::bt/::ipmi/g to be more correct
The code references bt everywhere for blocktransfer, to mean, inside the
IPMI packet itself. However, those packets could be KCS and come in
through the same IPMI daemon. Therefore, rename bt to ipmi for the data
handler type.
Change-Id: I5a460609fc09905b911b534ef6a1a13faa9cef29
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/main.cpp b/main.cpp
index 93d3770..4a5b8a6 100644
--- a/main.cpp
+++ b/main.cpp
@@ -28,7 +28,7 @@
};
std::vector<DataHandlerPack> supportedTransports = {
- {FirmwareBlobHandler::FirmwareUpdateFlags::bt, nullptr},
+ {FirmwareBlobHandler::FirmwareUpdateFlags::ipmi, nullptr},
#ifdef ENABLE_PCI_BRIDGE
{FirmwareBlobHandler::FirmwareUpdateFlags::p2a, &pciDataHandler},
#endif