]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/C/Common/OsPath.c
License header updated to match correct format.
[mirror_edk2.git] / BaseTools / Source / C / Common / OsPath.c
index 088730689da456139271d44bd57aed350a0d03b5..7c90dfe12d8120b965473c0a5f4ae11b3518e8ab 100644 (file)
@@ -1,7 +1,8 @@
 /** @file\r
+Functions useful to operate file directories by parsing file path.\r
 \r
-Copyright (c) 2007 - 2008, Intel Corporation                                                         \r
-All rights reserved. This program and the accompanying materials                          \r
+Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>\r
+This program and the accompanying materials                          \r
 are licensed and made available under the terms and conditions of the BSD License         \r
 which accompanies this distribution.  The full text of the license may be found at        \r
 http://opensource.org/licenses/bsd-license.php                                            \r
@@ -9,19 +10,12 @@ http://opensource.org/licenses/bsd-license.php
 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     \r
 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.             \r
 \r
-Module Name:\r
-\r
-  StringFuncs.c\r
-\r
-Abstract:\r
-\r
-  Functions useful to operate file directories by parsing file path.\r
-\r
 **/\r
 \r
 #include <stdio.h>\r
 #include <stdlib.h>\r
 #include <string.h>\r
+#include "CommonLib.h"\r
 #include "OsPath.h"\r
 \r
 //\r
@@ -294,7 +288,7 @@ Returns:
 --*/\r
 {\r
   FILE    *InputFile;\r
-  InputFile = fopen (InputFileName, "rb");\r
+  InputFile = fopen (LongFilePath (InputFileName), "rb");\r
   if (InputFile == NULL) {\r
     return FALSE;\r
   } else {\r