Commit 231deaaaf9bbdc50fe535f69f8665ad35d9f9cc1

Authored by Perry Werneck
1 parent c495d287
Exists in master and in 1 other branch develop

Fixing remote version of WaitForKeyboardUnlock method.

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
client/src/session/remote/wait.cc
@@ -154,8 +154,8 @@ @@ -154,8 +154,8 @@
154 154
155 debug("Wait for unlock returned ",rc); 155 debug("Wait for unlock returned ",rc);
156 156
157 - if(rc == 0)  
158 - return (LIB3270_KEYBOARD_LOCK_STATE) 0; 157 + if(rc == LIB3270_KL_UNLOCKED)
  158 + break;
159 159
160 } 160 }
161 161