rename H_MAKE_TOKEN to H_MAKE and remove 'token' from other function names

This commit is contained in:
Sven M. Hallberg 2013-01-23 18:28:50 +01:00
parent ef17e42ec8
commit 4c8b0086d7
5 changed files with 29 additions and 29 deletions

View file

@ -50,7 +50,7 @@ const HParsedToken* act_domain(const HParseResult *p) {
if(arr) {
dns_domain_t *val = H_ALLOC(dns_domain_t); // dns_domain_t is char*
*val = arr;
ret = H_MAKE_TOKEN(dns_domain_t, val);
ret = H_MAKE(dns_domain_t, val);
}
return ret;