From dfeefd0afd7a98ae115437d88fec9af6db764f3e Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Fri, 28 Mar 2025 19:34:20 +0100 Subject: [PATCH] wip --- ntex-net/src/rt_polling/driver.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntex-net/src/rt_polling/driver.rs b/ntex-net/src/rt_polling/driver.rs index 040eb060..f03af7de 100644 --- a/ntex-net/src/rt_polling/driver.rs +++ b/ntex-net/src/rt_polling/driver.rs @@ -234,7 +234,7 @@ fn close( api.detach(fd, id); Some(ntex_rt::spawn_blocking(move || { if !error { - syscall!(libc::shutdown(fd, libc::SHUT_RDWR))?; + syscall!(libc::shutdown(fd, libc::SHUT_RDWR)); } syscall!(libc::close(fd)) }))