diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-02-27 07:34:54 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-02-27 07:36:10 +0100 |
commit | ea17fd0597f90298e0ac994169cad24f75da11f2 (patch) | |
tree | 9bc8f1fd7134a80bc9faa6cf56e60c7f60c805e2 /nxcomp | |
parent | f963593c79db2cf2e6256129284040e1483aefa2 (diff) | |
download | nx-libs-ea17fd0597f90298e0ac994169cad24f75da11f2.tar.gz nx-libs-ea17fd0597f90298e0ac994169cad24f75da11f2.tar.bz2 nx-libs-ea17fd0597f90298e0ac994169cad24f75da11f2.zip |
nxcomp/src/Loop.cpp: Make know the agent option 'keyconv' to nxcomp and tolerate it as a valid option.
Fixes ArcticaProject/nx-libs#630.
Diffstat (limited to 'nxcomp')
-rw-r--r-- | nxcomp/src/Loop.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nxcomp/src/Loop.cpp b/nxcomp/src/Loop.cpp index 4862748e0..186bb7152 100644 --- a/nxcomp/src/Loop.cpp +++ b/nxcomp/src/Loop.cpp @@ -8450,7 +8450,8 @@ int ParseEnvironmentOptions(const char *env, int force) strcasecmp(name, "streaming") == 0 || strcasecmp(name, "backingstore") == 0 || strcasecmp(name, "sleep") == 0 || - strcasecmp(name, "tolerancechecks") == 0) + strcasecmp(name, "keyconv") == 0 || + strcasecmp(name, "tolerancechecks") == 0) { nxdbg << "Loop: Ignoring agent option '" << name << "' with value '" << value << "'.\n" |