From f0424318479863edeed2a6a128e6d1ac926966e3 Mon Sep 17 00:00:00 2001 From: russell Date: Thu, 14 Jun 2007 19:39:12 +0000 Subject: Add a massive set of changes for converting to use the ast_debug() macro. (issue #9957, patches from mvanbaak, caio1982, critch, and dimas) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@69327 f38db490-d61c-443f-a65b-d21fe96a405b --- main/acl.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'main/acl.c') diff --git a/main/acl.c b/main/acl.c index 3a88c3c1a..74d0c096d 100644 --- a/main/acl.c +++ b/main/acl.c @@ -197,8 +197,7 @@ struct ast_ha *ast_append_ha(char *sense, char *stuff, struct ast_ha *path, int ret = ha; } } - if (option_debug) - ast_log(LOG_DEBUG, "%s/%s appended to acl for peer\n", stuff, nm); + ast_debug(1, "%s/%s appended to acl for peer\n", stuff, nm); return ret; } @@ -212,8 +211,7 @@ int ast_apply_ha(struct ast_ha *ha, struct sockaddr_in *sin) /* DEBUG */ ast_copy_string(iabuf, ast_inet_ntoa(sin->sin_addr), sizeof(iabuf)); ast_copy_string(iabuf2, ast_inet_ntoa(ha->netaddr), sizeof(iabuf2)); - if (option_debug) - ast_log(LOG_DEBUG, "##### Testing %s with %s\n", iabuf, iabuf2); + ast_debug(1, "##### Testing %s with %s\n", iabuf, iabuf2); /* For each rule, if this address and the netmask = the net address apply the current rule */ if ((sin->sin_addr.s_addr & ha->netmask.s_addr) == ha->netaddr.s_addr) -- cgit v1.2.3