Fix error in epg_hash routine.

This commit is contained in:
Adam Sutton 2012-06-26 10:09:55 +01:00
parent aa133bc7df
commit f8c18e24ee

View file

@ -1931,7 +1931,7 @@ void epg_query_sort(epg_query_result_t *eqr)
char *epg_hash ( const char *t, const char *s, const char *d )
{
if ( d && strlen(d) > 10 ) return md5sum(d);
if ( s && strlen(d) > 10 ) return md5sum(d);
if ( s && strlen(s) > 10 ) return md5sum(s);
if ( t ) return md5sum(t);
return NULL;
}