Skip to content

Commit

Permalink
s/break/continue
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Gauci committed Apr 13, 2019
1 parent 195af42 commit eff9bad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/terminal/TerminalServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ void runJumpHost(shared_ptr<ServerClientConnection> serverClientState) {
VLOG(4) << "Jumphost serverClientState has data";
string message;
if (!serverClientState->read(&message)) {
break;
continue;
}
try {
terminalSocketHandler->writeMessage(terminalFd, message);
Expand Down

0 comments on commit eff9bad

Please sign in to comment.