Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
notsure2 authored and Max Lv committed Dec 22, 2020
1 parent 36d9993 commit b68157e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/local.c
Original file line number Diff line number Diff line change
Expand Up @@ -1742,7 +1742,7 @@ main(int argc, char **argv)
}

if (tcp_outgoing_rcvbuf != 0) {
LOGI("set TCP outgoing connection receive buffer size to %d", tcp_outgoing_recvbuf);
LOGI("set TCP outgoing connection receive buffer size to %d", tcp_outgoing_rcvbuf);
}

if (plugin != NULL) {
Expand Down
2 changes: 1 addition & 1 deletion src/redir.c
Original file line number Diff line number Diff line change
Expand Up @@ -1244,7 +1244,7 @@ main(int argc, char **argv)
}

if (tcp_outgoing_rcvbuf != 0) {
LOGI("set TCP outgoing connection receive buffer size to %d", tcp_outgoing_recvbuf);
LOGI("set TCP outgoing connection receive buffer size to %d", tcp_outgoing_rcvbuf);
}

if (plugin != NULL) {
Expand Down
2 changes: 1 addition & 1 deletion src/server.c
Original file line number Diff line number Diff line change
Expand Up @@ -1865,7 +1865,7 @@ main(int argc, char **argv)
}

if (tcp_outgoing_rcvbuf != 0) {
LOGI("set TCP outgoing connection receive buffer size to %d", tcp_outgoing_recvbuf);
LOGI("set TCP outgoing connection receive buffer size to %d", tcp_outgoing_rcvbuf);
}

if (server_num == 0) {
Expand Down
2 changes: 1 addition & 1 deletion src/tunnel.c
Original file line number Diff line number Diff line change
Expand Up @@ -1183,7 +1183,7 @@ main(int argc, char **argv)
}

if (tcp_outgoing_rcvbuf != 0) {
LOGI("set TCP outgoing connection receive buffer size to %d", tcp_outgoing_recvbuf);
LOGI("set TCP outgoing connection receive buffer size to %d", tcp_outgoing_rcvbuf);
}

if (plugin != NULL) {
Expand Down

0 comments on commit b68157e

Please sign in to comment.