diff options
author | Daniel Gruno <humbedooh@apache.org> | 2012-09-24 12:32:50 +0200 |
---|---|---|
committer | Daniel Gruno <humbedooh@apache.org> | 2012-09-24 12:32:50 +0200 |
commit | f6f4d49f9b5e404978c467ace9ae0a7a68d22fa5 (patch) | |
tree | 4902fd0057bde298cb0e5a3a1732b575ada919ce /docs/manual/developer/request.xml | |
parent | consolidate hints/instructions about using APR (and maybe APR-util) with httpd (diff) | |
download | apache2-f6f4d49f9b5e404978c467ace9ae0a7a68d22fa5.tar.xz apache2-f6f4d49f9b5e404978c467ace9ae0a7a68d22fa5.zip |
whitespace fix
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1389277 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | docs/manual/developer/request.xml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/manual/developer/request.xml b/docs/manual/developer/request.xml index e5731cee9d..b54e41e3d0 100644 --- a/docs/manual/developer/request.xml +++ b/docs/manual/developer/request.xml @@ -149,17 +149,17 @@ <p>Needs Documentation. Code is:</p> <highlight language="c"> - if ((access_status = ap_run_access_checker(r)) != 0) { - return decl_die(access_status, "check access", r); - } +if ((access_status = ap_run_access_checker(r)) != 0) { + return decl_die(access_status, "check access", r); +} - if ((access_status = ap_run_check_user_id(r)) != 0) { - return decl_die(access_status, "check user", r); - } +if ((access_status = ap_run_check_user_id(r)) != 0) { + return decl_die(access_status, "check user", r); +} - if ((access_status = ap_run_auth_checker(r)) != 0) { - return decl_die(access_status, "check authorization", r); - } +if ((access_status = ap_run_auth_checker(r)) != 0) { + return decl_die(access_status, "check authorization", r); +} </highlight> </section> |