summaryrefslogtreecommitdiffstats
path: root/src/include/ipxe/resolv.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/ipxe/resolv.h')
-rw-r--r--src/include/ipxe/resolv.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/ipxe/resolv.h b/src/include/ipxe/resolv.h
index c7d61998a..767614bd2 100644
--- a/src/include/ipxe/resolv.h
+++ b/src/include/ipxe/resolv.h
@@ -94,7 +94,7 @@ resolv_put ( struct resolv_interface *resolv ) {
*/
static inline __attribute__ (( always_inline )) void
resolv_plug ( struct resolv_interface *resolv, struct resolv_interface *dest ) {
- plug ( &resolv->intf, &dest->intf );
+ intf_plug ( &resolv->intf, &dest->intf );
}
/**
@@ -105,7 +105,7 @@ resolv_plug ( struct resolv_interface *resolv, struct resolv_interface *dest ) {
*/
static inline __attribute__ (( always_inline )) void
resolv_plug_plug ( struct resolv_interface *a, struct resolv_interface *b ) {
- plug_plug ( &a->intf, &b->intf );
+ intf_plug_plug ( &a->intf, &b->intf );
}
/**
@@ -115,7 +115,7 @@ resolv_plug_plug ( struct resolv_interface *a, struct resolv_interface *b ) {
*/
static inline __attribute__ (( always_inline )) void
resolv_unplug ( struct resolv_interface *resolv ) {
- plug ( &resolv->intf, &null_resolv.intf );
+ intf_plug ( &resolv->intf, &null_resolv.intf );
}
/**