summaryrefslogtreecommitdiff
path: root/scripts/queuehandler
diff options
context:
space:
mode:
authorDaniel Meyerholt <dxm523@googlemail.com>2011-02-19 17:14:19 +0100
committerDaniel Meyerholt <dxm523@googlemail.com>2011-02-19 17:14:19 +0100
commitce06eebe187569464c41954d41a0b9c3482d89c8 (patch)
tree18f3dec23e894635e18a0db5ef79420396293ab4 /scripts/queuehandler
parentcda1b1cd156895f943612ca4961514b15e639553 (diff)
downloadvdr-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-xscripts/queuehandler4
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