Skip to content

Commit

Permalink
[syncd] Fix rpc server flag condition (sonic-net#557)
Browse files Browse the repository at this point in the history
  • Loading branch information
kcudnik committed Jan 28, 2020
1 parent 634e4e3 commit 2961bd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syncd/CommandLineOptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ std::string CommandLineOptions::getCommandLineString() const

#ifdef SAITHRIFT

ss << " RunRPCServer=" << (m_runRPCServer ? "YES" ? "NO");
ss << " RunRPCServer=" << (m_runRPCServer ? "YES" : "NO");
ss << " PortMapFile=" << m_portMapFile;

#endif // SAITHRIFT
Expand Down

0 comments on commit 2961bd3

Please sign in to comment.