Commit f6d299555b91cf051b424323c838bd85d5ece75f
1 parent
1037e2bb
Exists in
master
and in
1 other branch
Fixing charset reset issue.
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
src/terminal/charset.c
| @@ -277,7 +277,8 @@ | @@ -277,7 +277,8 @@ | ||
| 277 | 277 | ||
| 278 | if(!(path && *path)) | 278 | if(!(path && *path)) |
| 279 | { | 279 | { |
| 280 | - lib3270_reset_charset(terminal->host,NULL,NULL,LIB3270_DEFAULT_CGEN | LIB3270_DEFAULT_CSET); | 280 | + debug("%s: No remap file, resetting charset",__FUNCTION__); |
| 281 | + lib3270_set_host_charset(terminal->host,NULL); | ||
| 281 | return; | 282 | return; |
| 282 | } | 283 | } |
| 283 | 284 |