Fix #1565 - access: ensure anon accounts are inored for HTSP default perms

This commit is contained in:
Adam Sutton 2013-01-26 12:16:08 +00:00
parent c7aaa0b913
commit e2550adb35

View file

@ -324,6 +324,9 @@ access_get_by_addr(struct sockaddr *src)
TAILQ_FOREACH(ae, &access_entries, ae_link) {
if(!ae->ae_enabled)
continue;
if(ae->ae_username[0] != '*')
continue;