Skip to content

Commit

Permalink
Fix encoding of _.
Browse files Browse the repository at this point in the history
Also allow encoding of ^ in text mode.

Signed-off-by: Reimar Döffinger <[email protected]>
  • Loading branch information
rdoeffinger committed Jun 25, 2015
1 parent eaf8135 commit 45813ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iec16022ecc200.c
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ static char ecc200encode(unsigned char *t, int tl, unsigned char *s, int sl,
char out[6];
int p = 0;
const char *e,
*s2 = "!\"#$%&'()*+,-./:;<=>?@[\\]_",
*s2 = "!\"#$%&'()*+,-./:;<=>?@[\\]^_",
*s3 = 0;
if (newenc == 'c') {
e = " 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
Expand Down

0 comments on commit 45813ac

Please sign in to comment.