From 2e50a7ab75cb89dcf66862bb0159a833d6930d29 Mon Sep 17 00:00:00 2001
From: Yuki Yugui Sonoda <yugui@yugui.jp>
Date: Sat, 11 Apr 2015 12:01:58 +0900
Subject: [PATCH] Also fix rb_CallOps too.

---
 src/ruby/ext/grpc/rb_call.c | 20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)

diff --git a/src/ruby/ext/grpc/rb_call.c b/src/ruby/ext/grpc/rb_call.c
index 466ef57d20..1b1958fd26 100644
--- a/src/ruby/ext/grpc/rb_call.c
+++ b/src/ruby/ext/grpc/rb_call.c
@@ -647,21 +647,23 @@ void Init_grpc_error_codes() {
 
 void Init_grpc_op_codes() {
   /* Constants representing operation type codes in grpc.h */
-  VALUE rb_CallOps = rb_define_module_under(grpc_rb_mGrpcCore, "CallOps");
-  rb_define_const(rb_CallOps, "SEND_INITIAL_METADATA",
+  VALUE grpc_rb_mCallOps =
+      rb_define_module_under(grpc_rb_mGrpcCore, "CallOps");
+  rb_define_const(grpc_rb_mCallOps, "SEND_INITIAL_METADATA",
                   UINT2NUM(GRPC_OP_SEND_INITIAL_METADATA));
-  rb_define_const(rb_CallOps, "SEND_MESSAGE", UINT2NUM(GRPC_OP_SEND_MESSAGE));
-  rb_define_const(rb_CallOps, "SEND_CLOSE_FROM_CLIENT",
+  rb_define_const(grpc_rb_mCallOps, "SEND_MESSAGE",
+                  UINT2NUM(GRPC_OP_SEND_MESSAGE));
+  rb_define_const(grpc_rb_mCallOps, "SEND_CLOSE_FROM_CLIENT",
                   UINT2NUM(GRPC_OP_SEND_CLOSE_FROM_CLIENT));
-  rb_define_const(rb_CallOps, "SEND_STATUS_FROM_SERVER",
+  rb_define_const(grpc_rb_mCallOps, "SEND_STATUS_FROM_SERVER",
                   UINT2NUM(GRPC_OP_SEND_STATUS_FROM_SERVER));
-  rb_define_const(rb_CallOps, "RECV_INITIAL_METADATA",
+  rb_define_const(grpc_rb_mCallOps, "RECV_INITIAL_METADATA",
                   UINT2NUM(GRPC_OP_RECV_INITIAL_METADATA));
-  rb_define_const(rb_CallOps, "RECV_MESSAGE",
+  rb_define_const(grpc_rb_mCallOps, "RECV_MESSAGE",
                   UINT2NUM(GRPC_OP_RECV_MESSAGE));
-  rb_define_const(rb_CallOps, "RECV_STATUS_ON_CLIENT",
+  rb_define_const(grpc_rb_mCallOps, "RECV_STATUS_ON_CLIENT",
                   UINT2NUM(GRPC_OP_RECV_STATUS_ON_CLIENT));
-  rb_define_const(rb_CallOps, "RECV_CLOSE_ON_SERVER",
+  rb_define_const(grpc_rb_mCallOps, "RECV_CLOSE_ON_SERVER",
                   UINT2NUM(GRPC_OP_RECV_CLOSE_ON_SERVER));
 }
 
-- 
GitLab