mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-08 12:10:59 +00:00
Don't ignore return value of httpd_stop
This commit is contained in:
@@ -306,7 +306,7 @@ esp_err_t httpd_ssl_start(httpd_handle_t *pHandle, struct httpd_ssl_config *conf
|
||||
}
|
||||
|
||||
/** Stop the server */
|
||||
void httpd_ssl_stop(httpd_handle_t handle)
|
||||
esp_err_t httpd_ssl_stop(httpd_handle_t handle)
|
||||
{
|
||||
httpd_stop(handle);
|
||||
return httpd_stop(handle);
|
||||
}
|
||||
|
Reference in New Issue
Block a user