Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
epg: remove unused epg_hash() function
  • Loading branch information
perexg committed Sep 25, 2014
1 parent d0ab501 commit 7fa70f9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 15 deletions.
9 changes: 0 additions & 9 deletions src/epg.c
Expand Up @@ -2312,15 +2312,6 @@ void epg_query_sort(epg_query_result_t *eqr)
* Miscellaneous
* *************************************************************************/

/* Hash title/summary/description to form URI */
char *epg_hash ( const char *t, const char *s, const char *d )
{
if ( d && strlen(d) > 10 ) return md5sum(d);
if ( s && strlen(s) > 10 ) return md5sum(s);
if ( t ) return md5sum(t);
return NULL;
}

void epg_skel_done(void)
{
epg_object_t **skel;
Expand Down
6 changes: 0 additions & 6 deletions src/epg.h
Expand Up @@ -562,10 +562,4 @@ void epg_save (void);
void epg_save_callback (void *p);
void epg_updated (void);

/* ************************************************************************
* Miscellaneous
* ***********************************************************************/

char *epg_hash ( const char *t, const char *s, const char *d );

#endif /* EPG_H */

0 comments on commit 7fa70f9

Please sign in to comment.