From: Michael Brown Date: Mon, 2 Jul 2007 02:12:35 +0000 (+0100) Subject: Call shutdown() from pxenv_undi_shutdown(). Probably not totally X-Git-Tag: v0.9.3~339 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3bbfd7a757064022098793d865c6dae42c74c0b;p=thirdparty%2Fipxe.git Call shutdown() from pxenv_undi_shutdown(). Probably not totally correct, but it's enough to get RIS working. --- diff --git a/src/interface/pxe/pxe_undi.c b/src/interface/pxe/pxe_undi.c index a9d0a208a..4a9b3390b 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; }