From: Michael Brown Date: Thu, 28 Jun 2007 17:49:57 +0000 (+0100) Subject: Added missing config.[ch] lines for FTP protocol X-Git-Tag: v0.9.3~364 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f13baeb330e8fd51ab657f6eb15df968ec9414d8;p=thirdparty%2Fipxe.git Added missing config.[ch] lines for FTP protocol --- diff --git a/src/config.h b/src/config.h index 1e75f4611..463d09172 100644 --- a/src/config.h +++ b/src/config.h @@ -73,6 +73,7 @@ #define DOWNLOAD_PROTO_TFTP /* Trivial File Transfer Protocol */ #undef DOWNLOAD_PROTO_NFS /* Network File System */ #define DOWNLOAD_PROTO_HTTP /* Hypertext Transfer Protocol */ +#undef DOWNLOAD_PROTO_FTP /* File Transfer Protocol */ #undef DOWNLOAD_PROTO_TFTM /* Multicast Trivial File Transfer Protocol */ #undef DOWNLOAD_PROTO_SLAM /* Scalable Local Area Multicast */ #undef DOWNLOAD_PROTO_FSP /* FSP? */ diff --git a/src/core/config.c b/src/core/config.c index ac3100a3f..71f8777d9 100644 --- a/src/core/config.c +++ b/src/core/config.c @@ -91,6 +91,9 @@ REQUIRE_OBJECT ( nfs ); #ifdef DOWNLOAD_PROTO_HTTP REQUIRE_OBJECT ( http ); #endif +#ifdef DOWNLOAD_PROTO_FTP +REQUIRE_OBJECT ( ftp ); +#endif #ifdef DOWNLOAD_PROTO_TFTM REQUIRE_OBJECT ( tftm ); #endif