From 84f99f781e405f90460f72cd3f5c1b5f97242f06 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Tue, 22 Jan 2008 18:50:24 +0000 Subject: [PATCH] Use XFER_INIT() macro. --- src/interface/pxe/pxe_udp.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/interface/pxe/pxe_udp.c b/src/interface/pxe/pxe_udp.c index 0d6d1b74..40c2b2e5 100644 --- a/src/interface/pxe/pxe_udp.c +++ b/src/interface/pxe/pxe_udp.c @@ -111,13 +111,7 @@ static struct xfer_interface_operations pxe_udp_xfer_operations = { /** The PXE UDP connection */ static struct pxe_udp_connection pxe_udp = { - .xfer = { - .intf = { - .dest = &null_xfer.intf, - .refcnt = NULL, - }, - .op = &pxe_udp_xfer_operations, - }, + .xfer = XFER_INIT ( &pxe_udp_xfer_operations ), .local = { .sin_family = AF_INET, },