diff options
author | Daniel Meyerholt <dxm523@googlemail.com> | 2011-02-19 17:14:19 +0100 |
---|---|---|
committer | Daniel Meyerholt <dxm523@googlemail.com> | 2011-02-19 17:14:19 +0100 |
commit | ce06eebe187569464c41954d41a0b9c3482d89c8 (patch) | |
tree | 18f3dec23e894635e18a0db5ef79420396293ab4 /scripts/queuehandler | |
parent | cda1b1cd156895f943612ca4961514b15e639553 (diff) | |
download | vdr-plugin-vdrrip-ce06eebe187569464c41954d41a0b9c3482d89c8.tar.gz vdr-plugin-vdrrip-ce06eebe187569464c41954d41a0b9c3482d89c8.tar.bz2 |
* fixed wrong placed brackets in queuehandler
* fixed some compiler warnings
Diffstat (limited to 'scripts/queuehandler')
-rwxr-xr-x | scripts/queuehandler | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/queuehandler b/scripts/queuehandler index 0d0e840..ddee3fc 100755 --- a/scripts/queuehandler +++ b/scripts/queuehandler @@ -401,7 +401,7 @@ create_symbolic_link() { elif [ "$dvd" ]; then return; fi log_info "create a symbolic link from $dir/ to $tempdir/temp.vdr" - if [ $recGeneration = "new"] + if [ $recGeneration = "new" ] then ln -s "$dir/00001.ts" "$tempdir/temp.vdr" else @@ -412,7 +412,7 @@ create_symbolic_link() { then log_info "could not create a symolic link" log_info "try to copy the file" - if [ $recGeneration = "new"] + if [ $recGeneration = "new" ] then execute "cp $dir/00001.ts $tempdir/temp.vdr" else |