Misc Grammer/formatting fixes - Thanks Corydon76! (bug #3361)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4827 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Josh Roberson
2005-01-17 22:53:36 +00:00
parent 840f035827
commit 7f887cca90
5 changed files with 30 additions and 30 deletions

4
acl.c
View File

@@ -154,12 +154,12 @@ struct ast_ha *ast_append_ha(char *sense, char *stuff, struct ast_ha *path)
ha->netmask.s_addr = htonl(y);
}
} else if (!inet_aton(nm, &ha->netmask)) {
ast_log(LOG_WARNING, "%s not a valid netmask\n", nm);
ast_log(LOG_WARNING, "%s is not a valid netmask\n", nm);
free(ha);
return path;
}
if (!inet_aton(tmp, &ha->netaddr)) {
ast_log(LOG_WARNING, "%s not a valid IP\n", tmp);
ast_log(LOG_WARNING, "%s is not a valid IP\n", tmp);
free(ha);
return path;
}