You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by ro...@apache.org on 2010/10/14 19:56:03 UTC

svn commit: r1022630 - /incubator/thrift/trunk/compiler/cpp/src/main.cc

Author: roger
Date: Thu Oct 14 17:56:03 2010
New Revision: 1022630

URL: http://svn.apache.org/viewvc?rev=1022630&view=rev
Log:
THRIFT-955 remove CharLowerBuff function for mingw based Thrift Compiler
=> no lowercase names and directories which was inconsistent for using across different platforms


Modified:
    incubator/thrift/trunk/compiler/cpp/src/main.cc

Modified: incubator/thrift/trunk/compiler/cpp/src/main.cc
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/compiler/cpp/src/main.cc?rev=1022630&r1=1022629&r2=1022630&view=diff
==============================================================================
--- incubator/thrift/trunk/compiler/cpp/src/main.cc (original)
+++ incubator/thrift/trunk/compiler/cpp/src/main.cc Thu Oct 14 17:56:03 2010
@@ -189,7 +189,6 @@ char *saferealpath(const char *path, cha
   if (len == 0 || len > MAX_PATH - 1){
     strcpy(resolved_path, path);
   } else {
-    CharLowerBuff(buf, len);
     strcpy(resolved_path, buf);
   }