diff options
author | Manuel Reimer <manuel.reimer@gmx.de> | 2013-10-08 18:40:50 +0200 |
---|---|---|
committer | Manuel Reimer <manuel.reimer@gmx.de> | 2013-10-08 18:40:50 +0200 |
commit | 457073b5d37fb8520c746ebbcf9827a0e6c4c1e2 (patch) | |
tree | 1e606d8f4c3b8162e032ba0bb8c3e7448755d0a3 | |
parent | 62fe9deb4e7edc755c4be49aa074dc952b532023 (diff) | |
download | runvdr-extreme-457073b5d37fb8520c746ebbcf9827a0e6c4c1e2.tar.gz runvdr-extreme-457073b5d37fb8520c746ebbcf9827a0e6c4c1e2.tar.bz2 |
runvdr-conf.d fixed for OSDServer 0.1.3
-rw-r--r-- | HISTORY | 1 | ||||
-rwxr-xr-x | runvdr-conf.d | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -8,6 +8,7 @@ runvdr extreme Revision History runvdr.conf.pod for instructions on how to create man-page from it. - Fix: VDR_CHARSET_OVERRIDE now is correctly exported to the VDR process - Fix: Fixed problem with closed STDOUT with newer versions of "ps" +- Fix: runvdr-conf.d fixed for OSDServer 0.1.3. Thanks to iNOB. 2009-06-28: Version 0.4.2 - New: Support -i and --instance of VDR-1.7.4+ diff --git a/runvdr-conf.d b/runvdr-conf.d index ca97d7f..d183c49 100755 --- a/runvdr-conf.d +++ b/runvdr-conf.d @@ -306,8 +306,8 @@ function Osdserver_edit() { enable="${reply6xx[1]}" SendCmd "prio.GetValue" || return $false - [ "${reply6xx[0]}" != 600 ] && return $false - prio="${reply6xx[1]}" + [ "${reply5xx[0]}" != 500 ] && return $false + prio="${reply5xx[1]}" if [ "$enable" == "Yes" ] ; then Command_Enable "$short" --prio "$prio" |