[X2Go-Commits] [x2goclient] 23/47: x2goclient.cpp: fix string comparison.

git-admin at x2go.org git-admin at x2go.org
Thu Jun 4 01:46:32 CEST 2015


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

x2go pushed a commit to branch bugfix/osx
in repository x2goclient.

commit ba5bf972c93f21a68f25fbb29ffbe34742152bdc
Author: Mihai Moldovan <ionic at ionic.de>
Date:   Wed Mar 18 04:39:43 2015 +0100

    x2goclient.cpp: fix string comparison.
---
 debian/changelog   |    1 +
 src/x2goclient.cpp |    2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index bdc68a3..d0fb09a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -82,6 +82,7 @@ x2goclient (4.0.4.1-0x2go1) UNRELEASED; urgency=low
       UNIX cleanup helper tool is requested. It is necessary to call exec()
       after fork on virtually all operating system, especially on OS X.
     - x2goclient.cpp: fix compile problems introduced with the last commit.
+    - x2goclient.cpp: fix string comparison.
 
  -- X2Go Release Manager <git-admin at x2go.org>  Tue, 26 May 2015 21:42:09 +0200
 
diff --git a/src/x2goclient.cpp b/src/x2goclient.cpp
index cd13406..c695e26 100644
--- a/src/x2goclient.cpp
+++ b/src/x2goclient.cpp
@@ -101,7 +101,7 @@ int main (int argc, char **argv) {
     /* Make the current argument lowercase. */
     std::transform (cur_arg.begin (), cur_arg.end (), cur_arg.begin (), ::tolower);
 
-    if ((!cur_arg.empty ()) && (cur_arg.compare ("--unixhelper"))) {
+    if ((!cur_arg.empty ()) && (cur_arg.compare ("--unixhelper") == 0)) {
       unix_helper_request = 1;
       break;
     }

--
Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git


More information about the x2go-commits mailing list