aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compiler/csharp_generator_helpers.h
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2015-08-14 09:25:06 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2015-08-14 09:25:06 -0700
commit205e6c80c5392cf8c2385e6b3d6e065198a9b6cc (patch)
treeafb60c86b9c65b8b240a500e3def6121b202c494 /src/compiler/csharp_generator_helpers.h
parent76714346086e05975492327f05a9f3a546f02782 (diff)
dont generate directories in C# protoc plugin
Diffstat (limited to 'src/compiler/csharp_generator_helpers.h')
-rw-r--r--src/compiler/csharp_generator_helpers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/csharp_generator_helpers.h b/src/compiler/csharp_generator_helpers.h
index 1370627633..5639ea058b 100644
--- a/src/compiler/csharp_generator_helpers.h
+++ b/src/compiler/csharp_generator_helpers.h
@@ -41,7 +41,7 @@ namespace grpc_csharp_generator {
inline bool ServicesFilename(const grpc::protobuf::FileDescriptor *file,
grpc::string *file_name_or_error) {
- *file_name_or_error = grpc_generator::FileNameInUpperCamel(file) + "Grpc.cs";
+ *file_name_or_error = grpc_generator::FileNameInUpperCamel(file, false) + "Grpc.cs";
return true;
}