Commit c09580a5 authored by Mike Gabriel's avatar Mike Gabriel

Update 320_nxagent_configurable-keystrokes.full.patch. Fix a typo that prevented…

Update 320_nxagent_configurable-keystrokes.full.patch. Fix a typo that prevented the /etc/nxagent/keystrokes.cfg file to be parsed. (Fixes: #741).
parent 3fb038d6
...@@ -9,6 +9,9 @@ nx-libs (2:3.5.0.29-0x2go1) UNRELEASED; urgency=medium ...@@ -9,6 +9,9 @@ nx-libs (2:3.5.0.29-0x2go1) UNRELEASED; urgency=medium
* nx-libs.spec: * nx-libs.spec:
+ The gpg-offline bin:package is not available in our SLE repo. We can do + The gpg-offline bin:package is not available in our SLE repo. We can do
without. without.
+ Update 320_nxagent_configurable-keystrokes.full.patch. Fix a typo that
prevented the /etc/nxagent/keystrokes.cfg file to be parsed. (Fixes:
#741).
[ Mihai Moldovan ] [ Mihai Moldovan ]
* Change string "X2go" to "X2Go" where appropriate. * Change string "X2go" to "X2Go" where appropriate.
......
...@@ -481,7 +481,7 @@ Description: Make nxagent-specific keyboard bindings configurable ...@@ -481,7 +481,7 @@ Description: Make nxagent-specific keyboard bindings configurable
+ { + {
+ /* empty */ + /* empty */
+ } + }
+ else if (access(etcfile, R_OK == 0)) + else if (access(etcfile, R_OK) == 0)
+ { + {
+ if (filename) + if (filename)
+ free(filename); + free(filename);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment