Add debugging

pull/1/head
Michael Brown 2007-05-18 15:26:44 +00:00
parent 68dd826b86
commit b63b14ff32
1 changed files with 2 additions and 0 deletions

View File

@ -38,6 +38,8 @@
* interface into a null interface.
*/
void plug ( struct interface *intf, struct interface *dest ) {
DBGC ( intf, "INTF %p moving from INTF %p to INTF %p\n",
intf, intf->dest, dest );
intf_put ( intf->dest );
intf->dest = intf_get ( dest );
}