summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_http_request.c
diff options
context:
space:
mode:
authorZhidao HONG <z.hong@f5.com>2023-08-09 14:36:16 +0800
committerZhidao HONG <z.hong@f5.com>2023-08-09 14:36:16 +0800
commit9f04d6db630a22658581cbe7a9d28ecdb13d8de9 (patch)
treec5a255f47699c2b14efe4ea808d926c1168c9b16 /src/nxt_http_request.c
parent497f08d15fc040b3484562cf95dbe242a85fe0df (diff)
downloadunit-9f04d6db630a22658581cbe7a9d28ecdb13d8de9.tar.gz
unit-9f04d6db630a22658581cbe7a9d28ecdb13d8de9.tar.bz2
HTTP: stored matched action in nxt_http_request_t.
No functional changes.
Diffstat (limited to 'src/nxt_http_request.c')
-rw-r--r--src/nxt_http_request.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/nxt_http_request.c b/src/nxt_http_request.c
index 48f7dbe3..1ede9ffa 100644
--- a/src/nxt_http_request.c
+++ b/src/nxt_http_request.c
@@ -560,11 +560,9 @@ nxt_http_request_action(nxt_task_t *task, nxt_http_request_t *r,
if (nxt_fast_path(action != NULL)) {
do {
- if (action->rewrite != NULL) {
- ret = nxt_http_rewrite(task, r, action);
- if (nxt_slow_path(ret != NXT_OK)) {
- break;
- }
+ ret = nxt_http_rewrite(task, r);
+ if (nxt_slow_path(ret != NXT_OK)) {
+ break;
}
action = action->handler(task, r, action);