]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Fix some stupid mistakes in debug.
authorAdam Sutton <dev@adamsutton.me.uk>
Wed, 11 Jul 2012 14:59:34 +0000 (15:59 +0100)
committerAdam Sutton <dev@adamsutton.me.uk>
Wed, 11 Jul 2012 14:59:34 +0000 (15:59 +0100)
src/epggrab/module/opentv.c

index 0e09c819a77ab467aecbb966ab488139cde00b7d..3430942eacb4ddea04ee9f8783caec37f7b6e9a6 100644 (file)
@@ -494,11 +494,11 @@ static int _opentv_bat_section
   //       most of the time
   i = 0x80000000 | (bid << 8) | sec;
   if (!sta->begbat) {
-    tvhlog(LOG_DEBUG, "opentv", "begin processing BAT");
+    tvhlog(LOG_DEBUG, mod->id, "begin processing BAT");
     sta->begbat = i;
   } else if (sta->begbat == i) {
     sta->endbat = 1;
-    tvhlog(LOG_DEBUG, "opentv", "finish processing BAT");
+    tvhlog(LOG_DEBUG, mod->id, "finish processing BAT");
     return 0;
   }
 
@@ -597,7 +597,7 @@ static epggrab_ota_mux_t *_opentv_event_callback
   }
 
   /* Mark complete */
-  tvhlog(LOG_DEBUG, "opentv", "finish processing events");
+  epggrab_ota_complete(ota);
   
   return NULL;
 }