From: Roger Meier Date: Thu, 14 Oct 2010 17:56:03 +0000 (+0000) Subject: THRIFT-955 remove CharLowerBuff function for mingw based Thrift Compiler X-Git-Tag: 0.6.0~76 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=3b76fa3638ff91a76c518bfbc480a18e17d01e09;p=common%2Fthrift.git THRIFT-955 remove CharLowerBuff function for mingw based Thrift Compiler => 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 --- diff --git a/compiler/cpp/src/main.cc b/compiler/cpp/src/main.cc index 56b5c75d..fa6d3aee 100644 --- a/compiler/cpp/src/main.cc +++ b/compiler/cpp/src/main.cc @@ -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); }