summaryrefslogtreecommitdiffstats
path: root/docs/manual/developer/request.xml
diff options
context:
space:
mode:
authorDaniel Gruno <humbedooh@apache.org>2012-09-24 12:32:50 +0200
committerDaniel Gruno <humbedooh@apache.org>2012-09-24 12:32:50 +0200
commitf6f4d49f9b5e404978c467ace9ae0a7a68d22fa5 (patch)
tree4902fd0057bde298cb0e5a3a1732b575ada919ce /docs/manual/developer/request.xml
parentconsolidate hints/instructions about using APR (and maybe APR-util) with httpd (diff)
downloadapache2-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.xml18
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>