Add drama for content type 15

This commit is contained in:
hummypkg 2018-01-28 13:33:51 +00:00 committed by HummyPkg
parent 000c750b19
commit 708b081168
2 changed files with 5 additions and 3 deletions

View File

@ -355,6 +355,8 @@ content_type(struct descriptor *d)
return "Education/Science/Factual"; return "Education/Science/Factual";
case 0xa: case 0xa:
return "Leisure"; return "Leisure";
case 0xf:
return "Drama";
default: default:
return "Undefined"; return "Undefined";
} }

6
main.c
View File

@ -1,6 +1,6 @@
/* /*
* Humax EPG Tool * Humax EPG Tool
* by af123, 2011 - 2017 * by af123, 2011 - 2018
*/ */
#include <stdio.h> #include <stdio.h>
@ -21,7 +21,7 @@
#include "lint.h" #include "lint.h"
int debug = 0; int debug = 0;
const char *version = "1.2.7"; const char *version = "1.2.8";
unsigned long sysopts = 0; unsigned long sysopts = 0;
unsigned long filterflags = 0; unsigned long filterflags = 0;
static time_t latest_stamp = 0; static time_t latest_stamp = 0;
@ -34,7 +34,7 @@ sqlite3_stmt *stmt;
int int
syntax() syntax()
{ {
fprintf(stderr, "Humax EPG Tool v%s, by af123, 2011-2017.\n\n", fprintf(stderr, "Humax EPG Tool v%s, by af123, 2011-2018.\n\n",
version); version);
fprintf(stderr, fprintf(stderr,
"Syntax: epg [options] [filters] <command>...\n\n"); "Syntax: epg [options] [filters] <command>...\n\n");