Skip to content

Commit

Permalink
Merge pull request connamara#225 from roken/master
Browse files Browse the repository at this point in the history
FileStore Risks Corrupting Sequence Number File
  • Loading branch information
gbirchmeier committed Dec 10, 2013
2 parents 9f41ce9 + 362e99a commit bf2c12d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QuickFIXn/FileStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ private void setSeqNum()
seqNumsFile_.Seek(0, System.IO.SeekOrigin.Begin);
System.IO.StreamWriter writer = new System.IO.StreamWriter(seqNumsFile_);

writer.Write(GetNextSenderMsgSeqNum().ToString("D10") + " : " + GetNextTargetMsgSeqNum().ToString("D10"));
writer.Write(GetNextSenderMsgSeqNum().ToString("D10") + " : " + GetNextTargetMsgSeqNum().ToString("D10") + " ");
writer.Flush();
}

Expand Down

0 comments on commit bf2c12d

Please sign in to comment.