summaryrefslogtreecommitdiff
path: root/src/mod_magnet.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mod_magnet.c')
-rw-r--r--src/mod_magnet.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mod_magnet.c b/src/mod_magnet.c
index 4f4bc192..4d46d7e0 100644
--- a/src/mod_magnet.c
+++ b/src/mod_magnet.c
@@ -538,7 +538,8 @@ static buffer *magnet_env_get_buffer_by_id(server *srv, connection *con, int id)
case MAGNET_ENV_URI_QUERY: dest = con->uri.query; break;
case MAGNET_ENV_REQUEST_METHOD:
- buffer_copy_string(srv->tmp_buf, get_http_method_name(con->request.http_method));
+ buffer_string_set_length(srv->tmp_buf, 0);
+ http_method_append(srv->tmp_buf, con->request.http_method);
dest = srv->tmp_buf;
break;
case MAGNET_ENV_REQUEST_URI: dest = con->request.uri; break;