diff options
author | Daryl McDaniel <daryl.mcdaniel@intel.com> | 2014-08-25 20:47:20 +0000 |
---|---|---|
committer | darylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524> | 2014-08-25 20:47:20 +0000 |
commit | 460f337bc035b61dec3819f4b62a7181e3631b3f (patch) | |
tree | 002c70fbba40d5027104abc02290315379b0c150 /AppPkg/Applications | |
parent | d90aa46258726412d9b9d77cfeb879adad837067 (diff) | |
download | edk2-platforms-460f337bc035b61dec3819f4b62a7181e3631b3f.tar.xz |
AppPkg/Applications/Sockets/TftpServer: Make the include file names match the case of the files in the file system.
Change “#include <sys/Stat.h>” to “#include <sys/stat.h>”.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Daryl McDaniel <daryl.mcdaniel@intel.com>
Reviewed-by: Leahy, Leroy P <leroy.p.leahy@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15891 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'AppPkg/Applications')
-rw-r--r-- | AppPkg/Applications/Sockets/TftpServer/TftpServer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AppPkg/Applications/Sockets/TftpServer/TftpServer.h b/AppPkg/Applications/Sockets/TftpServer/TftpServer.h index 79b64c2820..2166893570 100644 --- a/AppPkg/Applications/Sockets/TftpServer/TftpServer.h +++ b/AppPkg/Applications/Sockets/TftpServer/TftpServer.h @@ -39,7 +39,7 @@ #include <sys/EfiSysCall.h>
#include <sys/poll.h>
#include <sys/socket.h>
-#include <sys/Stat.h>
+#include <sys/stat.h>
//------------------------------------------------------------------------------
// Macros
|