aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/c/request.c
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-12-10 13:32:09 -0500
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-12-10 13:32:09 -0500
commitb04e123d0e1159d431aae00c3e8f1cc4a1b95684 (patch)
tree0f8fb3c5e3f1278843704633e53f27ec20e49b06 /src/c/request.c
parent14163f6e6e160694eff3d409ca3cf0b8b76c4a3a (diff)
Basis.url and redirects
Diffstat (limited to 'src/c/request.c')
-rw-r--r--src/c/request.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/request.c b/src/c/request.c
index 069de4aa..2357a86b 100644
--- a/src/c/request.c
+++ b/src/c/request.c
@@ -374,7 +374,7 @@ request_result uw_request(uw_request_context rc, uw_context ctx,
}
strcpy(rc->path_copy, path);
fk = uw_begin(ctx, rc->path_copy);
- if (fk == SUCCESS || fk == RETURN_BLOB) {
+ if (fk == SUCCESS || fk == RETURN_INDIRECTLY) {
uw_commit(ctx);
return SERVED;
} else if (fk == BOUNDED_RETRY) {