mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-13 14:44:35 -04:00
Allow X in Telepen Numeric
Bugfix by Milton Neil
This commit is contained in:
parent
b2123f78a3
commit
7bbb7072b4
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ int telepen_num(struct zint_symbol *symbol, unsigned char source[], int src_len)
|
||||||
}
|
}
|
||||||
ustrcpy(temp, source);
|
ustrcpy(temp, source);
|
||||||
to_upper(temp);
|
to_upper(temp);
|
||||||
error_number = is_sane(NEON, temp, temp_length);
|
error_number = is_sane(SODIUM, temp, temp_length);
|
||||||
if (error_number == ZINT_ERROR_INVALID_DATA) {
|
if (error_number == ZINT_ERROR_INVALID_DATA) {
|
||||||
strcpy(symbol->errtxt, "Invalid characters in data (C93)");
|
strcpy(symbol->errtxt, "Invalid characters in data (C93)");
|
||||||
return error_number;
|
return error_number;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue