THRIFT-955 remove CharLowerBuff function for mingw based Thrift Compiler
authorRoger Meier <roger@apache.org>
Thu, 14 Oct 2010 17:56:03 +0000 (17:56 +0000)
committerRoger Meier <roger@apache.org>
Thu, 14 Oct 2010 17:56:03 +0000 (17:56 +0000)
=> no lowercase names and directories which was inconsistent for using across different platforms

git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@1022630 13f79535-47bb-0310-9956-ffa450edef68

compiler/cpp/src/main.cc

index 56b5c75..fa6d3ae 100644 (file)
@@ -189,7 +189,6 @@ char *saferealpath(const char *path, char *resolved_path) {
   if (len == 0 || len > MAX_PATH - 1){
     strcpy(resolved_path, path);
   } else {
-    CharLowerBuff(buf, len);
     strcpy(resolved_path, buf);
   }