rename clients_enq_ref() to clients_send_ref() which is more appropriate

This commit is contained in:
Andreas Öman 2007-09-17 20:48:19 +00:00
parent cb51ed4933
commit 9468a5af21
4 changed files with 7 additions and 7 deletions

2
epg.c
View file

@ -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;

View 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];

View 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);

8
pvr.c
View file

@ -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);
}