summaryrefslogtreecommitdiffstats
path: root/src/core/interface.c
diff options
context:
space:
mode:
authorMichael Brown2007-05-01 02:06:21 +0200
committerMichael Brown2007-05-01 02:06:21 +0200
commita90a9adbd7f7ae53aa824c77d159f21ace1bc1f6 (patch)
tree5e2bb67f5ffac5060ff5049063dd19e77304c47d /src/core/interface.c
parentDocument the fact that a zeroed-out refcounted object will behave in (diff)
downloadipxe-a90a9adbd7f7ae53aa824c77d159f21ace1bc1f6.tar.gz
ipxe-a90a9adbd7f7ae53aa824c77d159f21ace1bc1f6.tar.xz
ipxe-a90a9adbd7f7ae53aa824c77d159f21ace1bc1f6.zip
Clarify behaviour of plug() by using intf_put() and intf_get().
Diffstat (limited to 'src/core/interface.c')
-rw-r--r--src/core/interface.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/interface.c b/src/core/interface.c
index 4c420fda..f9345de6 100644
--- a/src/core/interface.c
+++ b/src/core/interface.c
@@ -38,9 +38,8 @@
* interface into a null interface.
*/
void plug ( struct interface *intf, struct interface *dest ) {
- ref_put ( intf->dest->refcnt );
- intf->dest = dest;
- ref_get ( intf->dest->refcnt );
+ intf_put ( intf->dest );
+ intf->dest = intf_get ( dest );
}
/**