From 0e9252606c3542291ceb8a0aa92865a8d45c90e9 Mon Sep 17 00:00:00 2001 From: Andrew Kay Date: Tue, 13 Jun 2023 23:55:08 -0500 Subject: [PATCH] Fix PA key mapping --- src/core/actions/table.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/actions/table.c b/src/core/actions/table.c index cceeedf..57fa6bf 100644 --- a/src/core/actions/table.c +++ b/src/core/actions/table.c @@ -86,11 +86,11 @@ static int pa1(H3270 *hSession) { } static int pa2(H3270 *hSession) { - return lib3270_pakey(hSession,1); + return lib3270_pakey(hSession,2); } static int pa3(H3270 *hSession) { - return lib3270_pakey(hSession,1); + return lib3270_pakey(hSession,3); } /** -- libgit2 0.21.2