aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib
diff options
context:
space:
mode:
authorGravatar yang-g <yangg@google.com>2016-06-13 11:09:29 -0700
committerGravatar yang-g <yangg@google.com>2016-06-13 11:09:29 -0700
commit773a8825bcb9cae06af18263b112b8f8fd96f10d (patch)
tree6627f6fee582cf2a7a60a6947db93a31eff1e84c /src/core/lib
parent55ca239bc2116857b347d8b1234e0cabf35640de (diff)
Minor fixes
Diffstat (limited to 'src/core/lib')
-rw-r--r--src/core/lib/iomgr/udp_server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lib/iomgr/udp_server.c b/src/core/lib/iomgr/udp_server.c
index 16150687d3..1ebccf2ee2 100644
--- a/src/core/lib/iomgr/udp_server.c
+++ b/src/core/lib/iomgr/udp_server.c
@@ -243,13 +243,13 @@ static int prepare_socket(int fd, const struct sockaddr *addr,
if (!grpc_set_socket_sndbuf(fd, buffer_size_bytes)) {
gpr_log(GPR_ERROR, "Failed to set send buffer size to %d bytes",
- buf_size_bytes);
+ buffer_size_bytes);
goto error;
}
if (!grpc_set_socket_rcvbuf(fd, buffer_size_bytes)) {
gpr_log(GPR_ERROR, "Failed to set receive buffer size to %d bytes",
- buf_size_bytes);
+ buffer_size_bytes);
goto error;
}