代码拉取完成,页面将自动刷新
同步操作将从 src-openEuler/lksctp-tools 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
From f0183c87b15a9b1ad06db88325d7e5eeddb89c7f Mon Sep 17 00:00:00 2001
From: Jianwen Ji <[email protected]>
Date: Tue, 18 Dec 2018 14:40:37 +0800
Subject: [PATCH 08/11] Fix error->errno typos
Signed-off-by: Jianwen Ji <[email protected]>
Signed-off-by: Marcelo Ricardo Leitner <[email protected]>
---
src/apps/sctp_status.c | 2 +-
src/apps/sctp_test.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/apps/sctp_status.c b/src/apps/sctp_status.c
index 46e9ca2..8563cbe 100644
--- a/src/apps/sctp_status.c
+++ b/src/apps/sctp_status.c
@@ -529,7 +529,7 @@ int receive_r(int sk)
DEBUG_PRINT(DEBUG_MIN, "\trecvmsg(sk=%d) ", sk);
error = recvmsg(sk, &inmessage, MSG_WAITALL);
- if (error < 0 && error != EAGAIN) {
+ if (error < 0 && errno != EAGAIN) {
fprintf(stderr, "\n\t\t*** recvmsg: %s ***\n\n",
strerror(errno));
fflush(stdout);
diff --git a/src/apps/sctp_test.c b/src/apps/sctp_test.c
index 4aa2d13..cd7654b 100644
--- a/src/apps/sctp_test.c
+++ b/src/apps/sctp_test.c
@@ -870,7 +870,7 @@ int receive_r(int sk, int once)
DEBUG_PRINT(DEBUG_MIN, "\trecvmsg(sk=%d) ", sk);
error = recvmsg(recvsk, &inmessage, MSG_WAITALL);
- if (error < 0 && error != EAGAIN) {
+ if (error < 0 && errno != EAGAIN) {
if (errno == ENOTCONN && socket_type == SOCK_STREAM &&
role == SERVER) {
printf("No association is present now!!\n");
--
1.8.3.1
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。