From 06b6bf6185067506a851a2efadf94599ad1cb880 Mon Sep 17 00:00:00 2001 From: rojer <rojer@rojer.me> Date: Tue, 7 Jun 2016 15:19:08 +0100 Subject: [PATCH] Propagate nc->err to err on CC3200 PUBLISHED_FROM=db7254b5bf25961a700cbce954ef02d41b176500 --- mongoose.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/mongoose.c b/mongoose.c index 3bc77d20c..f2a4c937d 100644 --- a/mongoose.c +++ b/mongoose.c @@ -3528,10 +3528,11 @@ void mg_mgr_handle_conn(struct mg_connection *nc, int fd_flags, double now) { if (ret != 0) err = 1; } #else -/* On SimpleLink and ESP8266 we use blocking connect. If we got as far as - * this, it means connect() was successful. - * TODO(rojer): Figure out why it fails where blocking succeeds. - */ + /* + * On SimpleLink and ESP8266 we use blocking connect. + * TODO(rojer): Figure out why it fails where blocking succeeds. + */ + err = nc->err; #endif #ifdef MG_ENABLE_SSL if (nc->ssl != NULL && err == 0) { -- GitLab