diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,7 +18,7 @@ enum cfg_value_type { struct dns_async; -typedef void (dns_callback_t)(struct dns_async *); +typedef void (dns_cb_t)(struct dns_async *); struct dns_async { char name[FQDN_STR_LEN + 1]; @@ -26,7 +26,7 @@ struct dns_async { struct addrinfo req; struct gaicb gcb; struct sigevent sev; - dns_callback_t *callback; + dns_cb_t *cb; void *priv; struct list_head list; }; |