Skip to content

Commit

Permalink
String type bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
lukem512 committed Sep 6, 2014
1 parent 5759222 commit 79659c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3419,7 +3419,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)

if (pfrom->cleanSubVer.find("/Max:0.9.1/") != std::string::npos)
{
printf("Client %s runs obsolete version 0.9.1, disconnecting\n", pfrom->addr.ToString());
printf("Client %s runs obsolete version 0.9.1, disconnecting\n", pfrom->addr.ToString().c_str());
pfrom->fDisconnect = true;
return true;
}
Expand Down

0 comments on commit 79659c8

Please sign in to comment.