]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
rename clients_enq_ref() to clients_send_ref() which is more appropriate
authorAndreas Öman <andreas@lonelycoder.com>
Mon, 17 Sep 2007 20:48:19 +0000 (20:48 +0000)
committerAndreas Öman <andreas@lonelycoder.com>
Mon, 17 Sep 2007 20:48:19 +0000 (20:48 +0000)
epg.c
htsclient.c
htsclient.h
pvr.c

diff --git a/epg.c b/epg.c
index ff2948dfbf1e88b4938eb614950fd25e1b3c86c3..b01eecda8ca0fc1285c6104781ae095eff4d1db4 100644 (file)
--- a/epg.c
+++ b/epg.c
@@ -424,7 +424,7 @@ epg_channel_maintain(void)
       epg_locate_current_event(ch, now);
       continue;
     }
-    
+
     if(now >= e->e_start && now < e->e_start + e->e_duration)
       continue;
 
index 621a231d09c5b1a9909e3cb89de3d4dd262b3cc9..d961a23a2a41960f28e925f00738b886381533ba 100644 (file)
@@ -108,7 +108,7 @@ client_ip_streamer(struct th_subscription *s, uint8_t *pkt, th_pid_t *pi,
  */
 
 void
-clients_enq_ref(int ref)
+clients_send_ref(int ref)
 {
   client_t  *c;
   char buf[10];
index 0d1d65d54f4162cf251685df7219d2b5a428cff9..f657d9c1703eaefb989c72fd1c42d0ca91c6f699 100644 (file)
@@ -23,7 +23,7 @@ void client_start(void);
 
 void client_unsubscribe(client_t *c);
 
-void clients_enq_ref(int ref);
+void clients_send_ref(int ref);
 
 void client_status_update(void);
 
diff --git a/pvr.c b/pvr.c
index 5598e613f2298ffa9fe3746ca84d65f3e8d2954a..5c31f746342025d1b8d9b2695a7b6b7d18763368 100644 (file)
--- a/pvr.c
+++ b/pvr.c
@@ -118,12 +118,12 @@ pvr_inform_status_change(pvr_rec_t *pvrr)
 {
   event_t *e;
 
-  clients_enq_ref(pvrr->pvrr_ref);
+  clients_send_ref(pvrr->pvrr_ref);
 
   e = epg_event_find_by_time(pvrr->pvrr_channel, pvrr->pvrr_start);
   
   if(e != NULL)
-    clients_enq_ref(e->e_tag);
+    clients_send_ref(e->e_tag);
 }
 
 
@@ -157,7 +157,7 @@ pvr_unrecord(pvr_rec_t *pvrr)
   }
   
   pvr_database_save();
-  clients_enq_ref(-1);
+  clients_send_ref(-1);
 }
 
 
@@ -188,7 +188,7 @@ pvr_link_pvrr(pvr_rec_t *pvrr)
 
 
   pvr_inform_status_change(pvrr);
-  clients_enq_ref(-1);
+  clients_send_ref(-1);
 }