Fix minor typo

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1919 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2004-01-10 21:31:40 +00:00
parent 861ed9a339
commit 571c8be2de

2
acl.c
View File

@@ -87,7 +87,7 @@ struct ast_ha *ast_append_ha(char *sense, char *stuff, struct ast_ha *path)
nm++; nm++;
} }
if (!inet_aton(tmp, &ha->netaddr)) { if (!inet_aton(tmp, &ha->netaddr)) {
ast_log(LOG_WARNING, "%s not a valid IP\n", stuff); ast_log(LOG_WARNING, "%s not a valid IP\n", tmp);
free(ha); free(ha);
return path; return path;
} }