Skip to content

Commit

Permalink
bnet: added return statement
Browse files Browse the repository at this point in the history
  • Loading branch information
franku committed Oct 16, 2018
1 parent a451843 commit c6cc8ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/lib/bnet.cc
Expand Up @@ -679,5 +679,5 @@ bool FormatAndSendResponseMessage(BareosSocket *bsock, uint32_t id, std::vector<
bool FormatAndSendResponseMessage(BareosSocket *bsock, uint32_t id, const std::string &str)
{
std::vector<std::string> vec { str };
FormatAndSendResponseMessage(bsock, id, vec);
return FormatAndSendResponseMessage(bsock, id, vec);
}

0 comments on commit c6cc8ad

Please sign in to comment.