mirror of
https://github.com/rofafor/vdr-plugin-iptv.git
synced 2023-10-10 13:37:03 +02:00
Updated patches.
Fixed argument corruption.
This commit is contained in:
parent
6901970b8a
commit
60a4d266b7
5
HISTORY
5
HISTORY
@ -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
4
iptv.c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user