Updated patches.

Fixed argument corruption.
This commit is contained in:
Rolf Ahrenberg 2010-01-06 19:02:40 +02:00
parent 6901970b8a
commit 60a4d266b7
2 changed files with 7 additions and 2 deletions

View File

@ -116,3 +116,8 @@ VDR Plugin 'iptv' Revision History
- Fixed handling of HTTP protocol headers.
- Modified sectionfilters to use socket pair instead of
filesystem fifos.
2010-xx-xx: Version 0.3.2
- Updated patches.
- Fixed argument corruption.

4
iptv.c
View File

@ -20,7 +20,7 @@
#error "VDR-1.6.0 API version or greater is required!"
#endif
static const char VERSION[] = "0.3.1";
static const char VERSION[] = "0.3.2";
static const char DESCRIPTION[] = trNOOP("Experience the IPTV");
class cPluginIptv : public cPlugin {
@ -78,7 +78,7 @@ bool cPluginIptv::ProcessArgs(int argc, char *argv[])
// Implement command line argument processing here if applicable.
static const struct option long_options[] = {
{ "devices", required_argument, NULL, 'd' },
{ NULL, 0, NULL, 0 }
{ NULL, no_argument, NULL, 0 }
};
int c;