Skip to content

Commit

Permalink
Merge pull request #23 from crocs-muni/devel
Browse files Browse the repository at this point in the history
Minor update making remote commands easier to detect
  • Loading branch information
petrs committed Jul 17, 2019
2 parents 737c010 + 5c57f5d commit 40cf4bf
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
Binary file modified Release_bins/Winscard_32b_v2019.07.17.zip
Binary file not shown.
Binary file modified Release_bins/Winscard_64b_v2019.07.17.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion Winscard/Winscard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3395,7 +3395,7 @@ Remote card protocol
*/
string_type Remote_FormatRequest(string_type targetReader, DWORD uniqueCmdID, string_type command, string_type commandData, string_type notes, string_type lineSeparator) {
// return string_format(">%s%s>%d%s%s%s%s%s%s", targetReader.c_str(), lineSeparator.c_str(), uniqueCmdID, CMD_SEPARATOR, command.c_str(), CMD_SEPARATOR, commandData.c_str(), lineSeparator.c_str(), notes.c_str());
return string_format(">%s%s\n>%d%s%s%s%s%s%s", targetReader.c_str(), lineSeparator.c_str(), uniqueCmdID, CMD_SEPARATOR, command.c_str(), CMD_SEPARATOR, commandData.c_str(), lineSeparator.c_str(), notes.c_str());
return string_format(">%s%s\n>%d%s%s%s%s%s%s\n", targetReader.c_str(), lineSeparator.c_str(), uniqueCmdID, CMD_SEPARATOR, command.c_str(), CMD_SEPARATOR, commandData.c_str(), lineSeparator.c_str(), notes.c_str());
}

#if defined (_WIN32)
Expand Down

0 comments on commit 40cf4bf

Please sign in to comment.