mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-04 16:56:53 +08:00
[XSwiftBus] Fix, write the string not the enum value
This commit is contained in:
committed by
Mat Sutcliffe
parent
77138f7788
commit
87a9059a05
@@ -95,7 +95,7 @@ namespace XSwiftBus
|
||||
|
||||
// this code should be similar to CXSwiftBusConfigWriter
|
||||
configFile << "# DBus Mode - Options: p2p, session" << std::endl;
|
||||
configFile << "dbusMode = " << m_dbusMode << std::endl;
|
||||
configFile << "dbusMode = " << toLower(dbusModeToString(m_dbusMode)) << std::endl;
|
||||
configFile << std::endl;
|
||||
configFile << "# DBus server address - relevant for P2P mode only" << std::endl;
|
||||
configFile << "dbusAddress = " << m_dbusAddress << std::endl;
|
||||
|
||||
Reference in New Issue
Block a user