mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-18 20:10:53 +00:00
Fix mistakes in netconn's error field checking.
This commit is contained in:
parent
5f1aac1450
commit
787eecbf43
@ -576,7 +576,7 @@ static void
|
||||
do_send(struct api_msg_msg *msg)
|
||||
{
|
||||
|
||||
if (msg->conn->err!=ERR_OK) {
|
||||
if (msg->conn->err==ERR_OK) {
|
||||
if (msg->conn->pcb.tcp != NULL) {
|
||||
switch (msg->conn->type) {
|
||||
#if LWIP_RAW
|
||||
@ -620,7 +620,7 @@ do_write(struct api_msg_msg *msg)
|
||||
#if LWIP_TCP
|
||||
err_t err;
|
||||
#endif
|
||||
if (msg->conn->err!=ERR_OK) {
|
||||
if (msg->conn->err==ERR_OK) {
|
||||
if (msg->conn->pcb.tcp != NULL) {
|
||||
switch (msg->conn->type) {
|
||||
#if LWIP_RAW
|
||||
@ -708,7 +708,7 @@ do_join_leave_group(struct api_msg_msg *msg)
|
||||
{
|
||||
err_t err = ERR_OK;
|
||||
|
||||
if (msg->conn->err!=ERR_OK) {
|
||||
if (msg->conn->err==ERR_OK) {
|
||||
if (msg->conn->pcb.tcp != NULL) {
|
||||
switch (msg->conn->type) {
|
||||
#if LWIP_RAW
|
||||
|
Loading…
Reference in New Issue
Block a user