diff options
author | Christian Wieninger <cwieninger@gmx.de> | 2012-05-12 20:27:32 +0200 |
---|---|---|
committer | Christian Wieninger <cwieninger@gmx.de> | 2012-05-12 20:27:32 +0200 |
commit | ebce5aab63f0e67397523aa3251289f7d5a1c715 (patch) | |
tree | b40d01b130a8b0c6c0b8bffcde09fad3df76335a | |
parent | a12a9eec499d41e3d1eaffd0919d06277da92886 (diff) | |
download | vdr-plugin-epgsearch-ebce5aab63f0e67397523aa3251289f7d5a1c715.tar.gz vdr-plugin-epgsearch-ebce5aab63f0e67397523aa3251289f7d5a1c715.tar.bz2 |
Use port 6419 for SVDRP in autotimer2searchtimer by default, thanks to Ville Skyttä
-rwxr-xr-x | scripts/autotimer2searchtimer.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/autotimer2searchtimer.pl b/scripts/autotimer2searchtimer.pl index c068b39..da5197e 100755 --- a/scripts/autotimer2searchtimer.pl +++ b/scripts/autotimer2searchtimer.pl @@ -50,7 +50,7 @@ my $SENDSVDRP = $opt_s ? 1 : 0; my $EnableRegex = $opt_r ? 1 : 0; my $Searchmode = defined $opt_m ? $opt_m : 1; my $Dest = $opt_d ? $opt_d : "localhost"; -my $Port = $opt_p ? $opt_p : 2001; +my $Port = $opt_p ? $opt_p : 6419; my $Timeout = 30; # max. seconds to wait for svdrp response |