diff options
author | Christian Wieninger <cwieninger@gmx.de> | 2012-05-12 20:23:45 +0200 |
---|---|---|
committer | Christian Wieninger <cwieninger@gmx.de> | 2012-05-12 20:23:45 +0200 |
commit | 1b1912d7b080a0dfe954bac9311eafc5bb293bc3 (patch) | |
tree | 0c9a4a7d8cbfb9596f59a439c46a644d740993c8 /epgsearch.c | |
parent | 6c5a88ee42952c50ddca3ea965b7c728173e6f24 (diff) | |
download | vdr-plugin-epgsearch-1b1912d7b080a0dfe954bac9311eafc5bb293bc3.tar.gz vdr-plugin-epgsearch-1b1912d7b080a0dfe954bac9311eafc5bb293bc3.tar.bz2 |
Drop .pl suffix from svdrpsend references like VDR 1.7.23+ did, thanks to Ville Skyttä
Diffstat (limited to 'epgsearch.c')
-rw-r--r-- | epgsearch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/epgsearch.c b/epgsearch.c index 1e0cf71..2b0f08b 100644 --- a/epgsearch.c +++ b/epgsearch.c @@ -85,7 +85,7 @@ int cLogFile::loglevellimit = 0; bool cPluginEpgsearch::VDR_readyafterStartup = false; // external SVDRPCommand -const char *cSVDRPClient::SVDRPSendCmd = "svdrpsend.pl"; +const char *cSVDRPClient::SVDRPSendCmd = "svdrpsend"; cPluginEpgsearch::cPluginEpgsearch(void) { @@ -117,7 +117,7 @@ const char* cPluginEpgsearch::Description(void) const char *cPluginEpgsearch::CommandLineHelp(void) { - return " -f file, --svdrpsendcmd=file the path to svdrpsend.pl for external\n" + return " -f file, --svdrpsendcmd=file the path to svdrpsend for external\n" " SVDRP communication (default is internal\n" " communication)\n" " -c path, --config=path to specify a specific config dir for epgsearch\n" @@ -208,7 +208,7 @@ bool cPluginEpgsearch::ProcessArgs(int argc, char *argv[]) if (EPGSearchConfig.useExternalSVDRP && access(cSVDRPClient::SVDRPSendCmd, F_OK) != 0) { - LogFile.eSysLog("ERROR - can't find SVDRPSend script: '%s'", cSVDRPClient::SVDRPSendCmd); + LogFile.eSysLog("ERROR - can't find svdrpsend script: '%s'", cSVDRPClient::SVDRPSendCmd); cSVDRPClient::SVDRPSendCmd = NULL; } |