Commit 85acf5747b35358943b2f05560541af9037caa2f

Authored by Perry Werneck
Committed by GitHub
2 parents 72c84682 0e925260
Exists in develop

Merge pull request #50 from lowobservable/fix-pa-aid-mapping

Fix PA key mapping
Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
src/core/actions/table.c
@@ -86,11 +86,11 @@ static int pa1(H3270 *hSession) { @@ -86,11 +86,11 @@ static int pa1(H3270 *hSession) {
86 } 86 }
87 87
88 static int pa2(H3270 *hSession) { 88 static int pa2(H3270 *hSession) {
89 - return lib3270_pakey(hSession,1); 89 + return lib3270_pakey(hSession,2);
90 } 90 }
91 91
92 static int pa3(H3270 *hSession) { 92 static int pa3(H3270 *hSession) {
93 - return lib3270_pakey(hSession,1); 93 + return lib3270_pakey(hSession,3);
94 } 94 }
95 95
96 /** 96 /**