aboutsummaryrefslogtreecommitdiff
path: root/addrconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'addrconf.c')
-rw-r--r--addrconf.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/addrconf.c b/addrconf.c
index d98373f..98d03e5 100644
--- a/addrconf.c
+++ b/addrconf.c
@@ -122,7 +122,7 @@ update_address(ia, addr, dhcpifp, ctlp, callback)
if (addr->vltime != DHCP6_DURATION_INFINITE &&
(addr->pltime == DHCP6_DURATION_INFINITE ||
addr->pltime > addr->vltime)) {
- dprintf(LOG_INFO, FNAME, "invalid address %s: "
+ debug_printf(LOG_INFO, FNAME, "invalid address %s: "
"pltime (%lu) is larger than vltime (%lu)",
in6addr2str(&addr->addr, 0),
addr->pltime, addr->vltime);
@@ -131,7 +131,7 @@ update_address(ia, addr, dhcpifp, ctlp, callback)
if (iac_na == NULL) {
if ((iac_na = malloc(sizeof(*iac_na))) == NULL) {
- dprintf(LOG_NOTICE, FNAME, "memory allocation failed");
+ debug_printf(LOG_NOTICE, FNAME, "memory allocation failed");
return (-1);
}
memset(iac_na, 0, sizeof(*iac_na));
@@ -152,7 +152,7 @@ update_address(ia, addr, dhcpifp, ctlp, callback)
/* search for the given address, and make a new one if it fails */
if ((sa = find_addr(&iac_na->statefuladdr_head, addr)) == NULL) {
if ((sa = malloc(sizeof(*sa))) == NULL) {
- dprintf(LOG_NOTICE, FNAME, "memory allocation failed");
+ debug_printf(LOG_NOTICE, FNAME, "memory allocation failed");
return (-1);
}
memset(sa, 0, sizeof(*sa));
@@ -169,7 +169,7 @@ update_address(ia, addr, dhcpifp, ctlp, callback)
sa->addr.pltime = addr->pltime;
sa->addr.vltime = addr->vltime;
sa->dhcpif = dhcpifp;
- dprintf(LOG_DEBUG, FNAME, "%s an address %s pltime=%lu, vltime=%lu",
+ debug_printf(LOG_DEBUG, FNAME, "%s an address %s pltime=%lu, vltime=%lu",
sacreate ? "create" : "update",
in6addr2str(&addr->addr, 0), addr->pltime, addr->vltime);
@@ -194,7 +194,7 @@ update_address(ia, addr, dhcpifp, ctlp, callback)
if (sa->timer == NULL) {
sa->timer = dhcp6_add_timer(addr_timo, sa);
if (sa->timer == NULL) {
- dprintf(LOG_NOTICE, FNAME,
+ debug_printf(LOG_NOTICE, FNAME,
"failed to add stateful addr timer");
remove_addr(sa); /* XXX */
return (-1);
@@ -233,7 +233,7 @@ remove_addr(sa)
{
int ret;
- dprintf(LOG_DEBUG, FNAME, "remove an address %s",
+ debug_printf(LOG_DEBUG, FNAME, "remove an address %s",
in6addr2str(&sa->addr.addr, 0));
if (sa->timer)
@@ -343,7 +343,7 @@ na_renew_data_free(evd)
struct dhcp6_list *ial;
if (evd->type != DHCP6_EVDATA_IANA) {
- dprintf(LOG_ERR, FNAME, "assumption failure");
+ debug_printf(LOG_ERR, FNAME, "assumption failure");
exit(1);
}
@@ -362,7 +362,7 @@ addr_timo(arg)
struct ia *ia;
void (*callback)__P((struct ia *));
- dprintf(LOG_DEBUG, FNAME, "address timeout for %s",
+ debug_printf(LOG_DEBUG, FNAME, "address timeout for %s",
in6addr2str(&sa->addr.addr, 0));
ia = sa->ctl->iacna_ia;