Commit 09ff5fa1242e6c14b98531797ece139744910b2d
1 parent
68cd0fe9
Exists in
master
and in
3 other branches
Simplificando configuração do host para facilitar a transferência de arquivos "BB"
Showing
2 changed files
with
11 additions
and
4 deletions
Show diff stats
kybd.c
... | ... | @@ -566,14 +566,14 @@ LIB3270_FKEY_ACTION( pfkey ) |
566 | 566 | |
567 | 567 | if (hSession->kybdlock) |
568 | 568 | { |
569 | - if(hSession->options & LIB3270_OPTION_AS400) | |
569 | + if(hSession->options & LIB3270_OPTION_KYBD_AS400) | |
570 | 570 | enq_key(hSession,pa_xlate[0]); |
571 | 571 | |
572 | 572 | enq_key(hSession,pf_xlate[key-1]); |
573 | 573 | } |
574 | 574 | else |
575 | 575 | { |
576 | - if(hSession->options & LIB3270_OPTION_AS400) | |
576 | + if(hSession->options & LIB3270_OPTION_KYBD_AS400) | |
577 | 577 | key_AID(hSession,pa_xlate[0]); |
578 | 578 | |
579 | 579 | key_AID(hSession,pf_xlate[key-1]); | ... | ... |
options.c
... | ... | @@ -46,9 +46,16 @@ |
46 | 46 | }, |
47 | 47 | |
48 | 48 | { |
49 | - LIB3270_OPTION_AS400, | |
49 | + LIB3270_OPTION_KYBD_AS400, | |
50 | 50 | "as400", |
51 | - N_( "Host is AS_400" ), | |
51 | + N_( "Host is AS/400" ), | |
52 | + NULL | |
53 | + }, | |
54 | + | |
55 | + { | |
56 | + LIB3270_OPTION_TSO, | |
57 | + "tso", | |
58 | + N_( "Host is TSO" ), | |
52 | 59 | NULL |
53 | 60 | }, |
54 | 61 | ... | ... |