Fixed handling the '-l' option

This commit is contained in:
Klaus Schmidinger 2008-01-13 11:52:22 +01:00
parent 1e69c4a578
commit 2355fa852b
2 changed files with 3 additions and 2 deletions

View File

@ -5543,3 +5543,4 @@ Video Disk Recorder Revision History
- Added cString::Truncate().
- Fixed the "i18n:" target in the "newplugin" script, so that it can create the
initial *.pot file.
- Fixed handling the '-l' option.

4
vdr.c
View File

@ -22,7 +22,7 @@
*
* The project's page is at http://www.cadsoft.de/vdr
*
* $Id: vdr.c 1.304 2008/01/06 11:48:14 kls Exp $
* $Id: vdr.c 1.305 2008/01/13 11:51:53 kls Exp $
*/
#include <getopt.h>
@ -304,7 +304,7 @@ int main(int argc, char *argv[])
}
break;
case 'l' | 0x100:
LircDevice = optarg ? : LIRC_DEVICE;
LircDevice = optarg ? optarg : LIRC_DEVICE;
break;
case 'm': MuteAudio = true;
break;