Skip to content

Commit

Permalink
fix for issue #58 (retries as hex instead of unsigned int)
Browse files Browse the repository at this point in the history
  • Loading branch information
weston-nrl committed Nov 27, 2024
1 parent a83ce59 commit b3eb9c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/mgenTransport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1139,7 +1139,7 @@ void MgenTcpTransport::ScheduleReconnect(ProtoSocket& theSocket)
mgen.ParseEvent(cmd, 0, true);

// Then resume after delay
sprintf(cmd, "%x MOD %u RECONNECT", (unsigned int) GetRetryDelay(), next->GetFlowId());
sprintf(cmd, "%u MOD %u RECONNECT", GetRetryDelay(), next->GetFlowId());
mgen.ParseEvent(cmd, 0, true);

}
Expand Down

0 comments on commit b3eb9c2

Please sign in to comment.