[X2Go-Commits] [nx-libs] 183/219: Keystroke.c: fix wrong return code

git-admin at x2go.org git-admin at x2go.org
Sat Sep 28 12:10:53 CEST 2019


This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch 3.6.x
in repository nx-libs.

commit 1d32e5368ab8d94a100144f741b00f4506e6eeff
Author: Ulrich Sibiller <uli42 at gmx.de>
Date:   Fri Jun 28 22:10:23 2019 +0200

    Keystroke.c: fix wrong return code
    
    The effect of this was that special keystrokes where detected and
    passed to the nxagent. E.g. pressing ctrl-alt-f for Fullscreen also
    produced an "f" in the current input window inside the nxagent.
---
 nx-X11/programs/Xserver/hw/nxagent/Keystroke.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/nx-X11/programs/Xserver/hw/nxagent/Keystroke.c b/nx-X11/programs/Xserver/hw/nxagent/Keystroke.c
index d524e9e0b..fe7e10d82 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/Keystroke.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/Keystroke.c
@@ -480,6 +480,9 @@ static enum nxagentSpecialKeystroke find_keystroke(XKeyEvent *X)
   return ret;
 }
 
+/*
+ * returns True if a special keystroke has been pressed. *result will contain the action.
+ */
 Bool nxagentCheckSpecialKeystroke(XKeyEvent *X, enum HandleEventResult *result)
 {
   enum nxagentSpecialKeystroke stroke = find_keystroke(X);
@@ -629,5 +632,5 @@ Bool nxagentCheckSpecialKeystroke(XKeyEvent *X, enum HandleEventResult *result)
     case KEYSTROKE_MAX:
       break;
   }
-  return (*result == doNothing);
+  return (*result != doNothing);
 }

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/nx-libs.git


More information about the x2go-commits mailing list