File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -776,7 +776,7 @@ int lwan_request_awaitv_any(struct lwan_request *r, ...)
776
776
777
777
if (UNLIKELY (ret < 0 )) {
778
778
errno = - ret ;
779
- lwan_status_critical_perror ("prepare_awaitv()" );
779
+ lwan_status_perror ("prepare_awaitv()" );
780
780
coro_yield (r -> conn -> coro , CONN_CORO_ABORT );
781
781
__builtin_unreachable ();
782
782
}
@@ -810,7 +810,7 @@ int lwan_request_awaitv_all(struct lwan_request *r, ...)
810
810
811
811
if (UNLIKELY (ret < 0 )) {
812
812
errno = - ret ;
813
- lwan_status_critical_perror ("prepare_awaitv()" );
813
+ lwan_status_perror ("prepare_awaitv()" );
814
814
coro_yield (r -> conn -> coro , CONN_CORO_ABORT );
815
815
__builtin_unreachable ();
816
816
}
@@ -857,7 +857,7 @@ static inline int async_await_fd(struct lwan_connection *conn,
857
857
return UNLIKELY (conn -> flags & CONN_HUNG_UP ) ? - fd : fd ;
858
858
}
859
859
860
- lwan_status_critical_perror ("prepare_await(%d)" , fd );
860
+ lwan_status_perror ("prepare_await(%d)" , fd );
861
861
coro_yield (conn -> coro , CONN_CORO_ABORT );
862
862
__builtin_unreachable ();
863
863
}
You can’t perform that action at this time.
0 commit comments