Skip to content

Commit 40cf4bf

Browse files
authored
Merge pull request #23 from crocs-muni/devel
Minor update making remote commands easier to detect
2 parents 737c010 + 5c57f5d commit 40cf4bf

File tree

3 files changed

+1
-1
lines changed

3 files changed

+1
-1
lines changed
1 Byte
Binary file not shown.
-1 Bytes
Binary file not shown.

Winscard/Winscard.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3395,7 +3395,7 @@ Remote card protocol
33953395
*/
33963396
string_type Remote_FormatRequest(string_type targetReader, DWORD uniqueCmdID, string_type command, string_type commandData, string_type notes, string_type lineSeparator) {
33973397
// 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());
3398-
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());
3398+
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());
33993399
}
34003400

34013401
#if defined (_WIN32)

0 commit comments

Comments
 (0)