r736 - vdr/vdr/trunk/debian

Tobias Grimm pkg-vdr-dvb-changes@lists.alioth.debian.org
Tue, 28 Jun 2005 16:58:41 +0000


Author: tiber-guest
Date: 2005-06-28 16:58:41 +0000 (Tue, 28 Jun 2005)
New Revision: 736

Modified:
   vdr/vdr/trunk/debian/changelog
   vdr/vdr/trunk/debian/vdr-shutdown
Log:
vdr: fixed parameter passing in vdr-shutdown

Modified: vdr/vdr/trunk/debian/changelog
===================================================================
--- vdr/vdr/trunk/debian/changelog	2005-06-26 21:54:38 UTC (rev 735)
+++ vdr/vdr/trunk/debian/changelog	2005-06-28 16:58:41 UTC (rev 736)
@@ -10,6 +10,7 @@
       or to replay Dolby Digital independently
   * Tobias Grimm <tg@e-tobi.net>
     - Added installation of README.vps and README.developer
+    - Fixed parameter passing in vdr-shutdown
 
  -- Debian VDR Team <pkg-vdr-dvb-devel@lists.alioth.debian.org>  Sun, 19 Jun 2005 17:25:56 +0200
 

Modified: vdr/vdr/trunk/debian/vdr-shutdown
===================================================================
--- vdr/vdr/trunk/debian/vdr-shutdown	2005-06-26 21:54:38 UTC (rev 735)
+++ vdr/vdr/trunk/debian/vdr-shutdown	2005-06-28 16:58:41 UTC (rev 736)
@@ -28,10 +28,10 @@
 
     if [ -x $shutdownhook ]; then
 	$log "executing $shutdownhook"
-	result_data=`$shutdownhook $*`
+	result_data=`$shutdownhook $@`
     else
 	$log "executing $shutdownhook as shell script"
-	result_data=`/bin/sh $shutdownhook $*`
+	result_data=`/bin/sh $shutdownhook $@`
     fi
     result=$?
     eval $result_data