Skip to content

Commit 2961bd3

Browse files
authored
[syncd] Fix rpc server flag condition (#557)
1 parent 634e4e3 commit 2961bd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

syncd/CommandLineOptions.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ std::string CommandLineOptions::getCommandLineString() const
4848

4949
#ifdef SAITHRIFT
5050

51-
ss << " RunRPCServer=" << (m_runRPCServer ? "YES" ? "NO");
51+
ss << " RunRPCServer=" << (m_runRPCServer ? "YES" : "NO");
5252
ss << " PortMapFile=" << m_portMapFile;
5353

5454
#endif // SAITHRIFT

0 commit comments

Comments
 (0)