diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2012-02-11 23:06:58 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2012-02-11 23:06:58 +0100 |
commit | ec72377982314efccbc8597a65ec364b8b75d251 (patch) | |
tree | 1cd9b4796132fa92dbfc31ce04d5ca37931b34cc /debian/patches/111_nxcomp_byerace.full+lite.patch | |
parent | 4eae840bd56bda22b7bf6c9a55f1118ed62461e4 (diff) | |
download | nx-libs-ec72377982314efccbc8597a65ec364b8b75d251.tar.gz nx-libs-ec72377982314efccbc8597a65ec364b8b75d251.tar.bz2 nx-libs-ec72377982314efccbc8597a65ec364b8b75d251.zip |
Revert "Add patch: 111_nxcomp_byerace.full+lite.patch. Work around race condition in qtnx and libnxcl."
This reverts commit 4eae840bd56bda22b7bf6c9a55f1118ed62461e4. It does not fix qtnx failures that occur with
this version of nxagent.
Diffstat (limited to 'debian/patches/111_nxcomp_byerace.full+lite.patch')
-rw-r--r-- | debian/patches/111_nxcomp_byerace.full+lite.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/debian/patches/111_nxcomp_byerace.full+lite.patch b/debian/patches/111_nxcomp_byerace.full+lite.patch deleted file mode 100644 index ff0f41c13..000000000 --- a/debian/patches/111_nxcomp_byerace.full+lite.patch +++ /dev/null @@ -1,21 +0,0 @@ ---- a/nxcomp/Loop.cpp -+++ b/nxcomp/Loop.cpp -@@ -7321,6 +7321,18 @@ - << logofs_flush; - #endif - -+ // Henning Heinold -+ // fix up error from libnxcl where bye can be in front of NXPROXY -+ if (strncmp(options, "bye", strlen("bye")) == 0) -+ { -+ int bye_length = strlen("bye"); -+ char *moo = &options[bye_length+1]; -+ -+ memmove(options, moo, DEFAULT_REMOTE_OPTIONS_LENGTH-bye_length-1); -+ *logofs << "Loop: Cleanded the bye in options, options now looks '" -+ << options << "'.\n" << logofs_flush; -+ } -+ - if (strncmp(options, "NXPROXY-", strlen("NXPROXY-")) != 0) - { - #ifdef PANIC |