summaryrefslogtreecommitdiffstats
path: root/modules/session
diff options
context:
space:
mode:
authorGraham Leggett <minfrin@apache.org>2008-04-05 18:30:44 +0200
committerGraham Leggett <minfrin@apache.org>2008-04-05 18:30:44 +0200
commit3e0bf1c8a117f9db85061e3719abf08e285fd383 (patch)
treee3a49999e87d9b73ff5e05d330119922900daa7c /modules/session
parentRename the ap_escape_path_segment_b function as suggested by (diff)
downloadapache2-3e0bf1c8a117f9db85061e3719abf08e285fd383.tar.xz
apache2-3e0bf1c8a117f9db85061e3719abf08e285fd383.zip
Rename the ap_escape_path_segment_b function as suggested by
Ruediger Pluem (left off commit r645120 by accident). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@645132 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/session')
-rw-r--r--modules/session/mod_session.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/session/mod_session.c b/modules/session/mod_session.c
index 59ea50eaf3..b3fe3c07a5 100644
--- a/modules/session/mod_session.c
+++ b/modules/session/mod_session.c
@@ -279,11 +279,11 @@ static int identity_concat(char *buffer, const char *key, const char *val)
*slider = '&';
slider++;
}
- ap_escape_path_segment_b(slider, key);
+ ap_escape_path_segment_buffer(slider, key);
slider += strlen(slider);
*slider = '=';
slider++;
- ap_escape_path_segment_b(slider, val);
+ ap_escape_path_segment_buffer(slider, val);
return 1;
}