removed a space when appending extra items to an environment variable for cgi

This commit is contained in:
hyung-hwan 2014-10-12 13:12:24 +00:00
parent bd64702fd4
commit 743196e796

View File

@ -150,7 +150,7 @@ static int cgi_capture_client_header (
/* append values with the same key */
while ((val = val->next))
{
if (qse_env_appendmbs (hdrctx->env, QSE_MT(", ")) <= -1 ||
if (qse_env_appendmbs (hdrctx->env, QSE_MT(",")) <= -1 ||
qse_env_appendmbs (hdrctx->env, val->ptr) <= -1)
{
hdrctx->httpd->errnum = QSE_HTTPD_ENOMEM;