From e3bbfd7a757064022098793d865c6dae42c74c0b Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Mon, 2 Jul 2007 03:12:35 +0100 Subject: [PATCH] Call shutdown() from pxenv_undi_shutdown(). Probably not totally correct, but it's enough to get RIS working. --- src/interface/pxe/pxe_undi.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/interface/pxe/pxe_undi.c b/src/interface/pxe/pxe_undi.c index a9d0a208..4a9b3390 100644 --- a/src/interface/pxe/pxe_undi.c +++ b/src/interface/pxe/pxe_undi.c @@ -29,6 +29,7 @@ #include #include #include +#include #include "pxe.h" /* PXENV_UNDI_STARTUP @@ -85,6 +86,8 @@ PXENV_EXIT_t pxenv_undi_shutdown ( struct s_PXENV_UNDI_SHUTDOWN *undi_shutdown ) { DBG ( "PXENV_UNDI_SHUTDOWN" ); + shutdown(); + undi_shutdown->Status = PXENV_STATUS_SUCCESS; return PXENV_EXIT_SUCCESS; }