1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
Description: fix missing declaration of UTF8_nextchar() and typo
Author: Steve Langasek <steve.langasek@canonical.com>
Bug-Debian: https://bugs.debian.org/1066608
Last-Update: 2024-04-09
Forwarded: no
Index: dvbstreamer-2.1.0/src/standard/dvb/sdtprocessor.c
===================================================================
--- dvbstreamer-2.1.0.orig/src/standard/dvb/sdtprocessor.c
+++ dvbstreamer-2.1.0/src/standard/dvb/sdtprocessor.c
@@ -46,6 +46,7 @@
#include "sdtprocessor.h"
#include "dvbtext.h"
#include "standard/dvb.h"
+#include "utf8.h"
/*******************************************************************************
* Defines *
Index: dvbstreamer-2.1.0/src/plugins/cam.c
===================================================================
--- dvbstreamer-2.1.0.orig/src/plugins/cam.c
+++ dvbstreamer-2.1.0/src/plugins/cam.c
@@ -97,7 +97,7 @@
if (pmt->i_program_number == service->id)
{
- needs_decrypting = PMTDoesNeedDecypting(pmt);
+ needs_decrypting = PMTDoesNeedDecrypting(pmt);
if (currentPMT)
{
@@ -197,4 +197,4 @@
}
return false;
-}
\ No newline at end of file
+}
|