diff options
author | jan <jan@152afb58-edef-0310-8abb-c4023f1b3aa9> | 2007-08-20 12:47:21 +0000 |
---|---|---|
committer | jan <jan@152afb58-edef-0310-8abb-c4023f1b3aa9> | 2007-08-20 12:47:21 +0000 |
commit | 8f2952ebb7f5f09eb9855d54f76dd7700f9452f3 (patch) | |
tree | ca462bac10fe7aa3612c7a4ddd63bfb5dd4db4e1 /src/mod_proxy_backend_ajp13.c | |
parent | 5b6f94af7815808c5f07c49c2b5610a36af1137b (diff) | |
download | lighttpd-8f2952ebb7f5f09eb9855d54f76dd7700f9452f3.tar.gz |
fixed to missed renames for ltostr() -> LI_ltostr()
git-svn-id: svn://svn.lighttpd.net/lighttpd/trunk@1953 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'src/mod_proxy_backend_ajp13.c')
-rw-r--r-- | src/mod_proxy_backend_ajp13.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_proxy_backend_ajp13.c b/src/mod_proxy_backend_ajp13.c index fff90b41..07226a26 100644 --- a/src/mod_proxy_backend_ajp13.c +++ b/src/mod_proxy_backend_ajp13.c @@ -412,7 +412,7 @@ int proxy_ajp13_forward_request(server *srv, connection *con, proxy_session *ses /* make sure we have content-length header */ if(con->request.content_length > 0) { - ltostr(buf, con->request.content_length); + LI_ltostr(buf, con->request.content_length); array_set_key_value(sess->request_headers, CONST_STR_LEN("Content-Length"), buf, strlen(buf)); } else { array_set_key_value(sess->request_headers, CONST_STR_LEN("Content-Length"), CONST_STR_LEN("0")); |