X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=acl.c;h=59ffab3e0a188a8ac921555b83a9276907ecfa46;hp=2c90052658eda947ea586a55f292dc85f24e68f7;hb=f0b8296a0635e74aaa58767e513eed226504ec34;hpb=d5e27e2a346da2f18188d317926a60687d082732 diff --git a/acl.c b/acl.c index 2c900526..59ffab3e 100644 --- a/acl.c +++ b/acl.c @@ -101,7 +101,7 @@ static void acl_del_entry(struct list_head *acl, char *addr, unsigned netmask) struct access_info *ai, *tmp; struct in_addr to_delete; - PARA_NOTICE_LOG("removing entries matching %s/%u\n", addr, netmask); + PARA_INFO_LOG("removing entries matching %s/%u\n", addr, netmask); inet_pton(AF_INET, addr, &to_delete); list_for_each_entry_safe(ai, tmp, acl, node) { @@ -111,7 +111,7 @@ static void acl_del_entry(struct list_head *acl, char *addr, unsigned netmask) const char *p = inet_ntop(AF_INET, &ai->addr.s_addr, dst, sizeof(dst)); if (p) - PARA_INFO_LOG("removing %s/%u\n", p, + PARA_DEBUG_LOG("removing %s/%u\n", p, ai->netmask); list_del(&ai->node); free(ai);