From 4da8a8e0666b3bfc1eac21aaf6a3aa66db02578c Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 18 May 2002 10:36:35 +0200 Subject: [PATCH] Added an error message if the directory specified in the '-L' option can't be accessed --- CONTRIBUTORS | 2 ++ HISTORY | 2 ++ vdr.c | 9 +++++++-- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index ef3d842b..cbb25fe9 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -137,6 +137,8 @@ Stefan Huelswitt for suggesting to make 'package' target in the plugin's Makefile produce a package that expands to a directory with just the plugin name and version number for suggesting to make the config directory available to plugins + for suggesting to add an error message if the directory specified in the '-L' + option can't be accessed Ulrich Röder for pointing out that there are channels that have a symbol rate higher than diff --git a/HISTORY b/HISTORY index 056e0f17..a450e2da 100644 --- a/HISTORY +++ b/HISTORY @@ -1306,3 +1306,5 @@ Video Disk Recorder Revision History Gregoire Favre). - Fixed the cutting mechanism to make it re-sync in case a frame is larger than the buffer (thanks to Sven Grothklags). +- Added an error message if the directory specified in the '-L' option can't be + accessed (suggested by Stefan Huelswitt). diff --git a/vdr.c b/vdr.c index 7fffa6fa..5acd2241 100644 --- a/vdr.c +++ b/vdr.c @@ -22,7 +22,7 @@ * * The project's page is at http://www.cadsoft.de/people/kls/vdr * - * $Id: vdr.c 1.109 2002/05/13 16:32:49 kls Exp $ + * $Id: vdr.c 1.110 2002/05/18 10:33:54 kls Exp $ */ #include @@ -146,7 +146,12 @@ int main(int argc, char *argv[]) fprintf(stderr, "vdr: invalid log level: %s\n", optarg); return 2; break; - case 'L': PluginManager.SetDirectory(optarg); + case 'L': if (access(optarg, R_OK | X_OK) == 0) + PluginManager.SetDirectory(optarg); + else { + fprintf(stderr, "vdr: can't access plugin directory: %s\n", optarg); + return 2; + } break; case 'm': MuteAudio = true; break;