revising httpd
This commit is contained in:
@ -103,7 +103,7 @@ const qse_char_t* qse_awk_dflerrstr (const qse_awk_t* awk, qse_awk_errnum_t errn
|
||||
QSE_T("illegal operand for increment/decrement operator"),
|
||||
QSE_T("'@include' not followed by a string"),
|
||||
QSE_T("include level too deep"),
|
||||
QSE_T("@word '${0}' not recognized"),
|
||||
QSE_T("'${0}' not recognized"),
|
||||
QSE_T("@ not followed by a valid word"),
|
||||
|
||||
QSE_T("divide by zero"),
|
||||
|
@ -5512,7 +5512,7 @@ static int get_string (
|
||||
|
||||
if (c == QSE_CHAR_EOF)
|
||||
{
|
||||
SETERR_TOK (awk, QSE_AWK_ESTRNC);
|
||||
SETERR_LOC (awk, QSE_AWK_ESTRNC, &awk->tok.loc);
|
||||
return -1;
|
||||
}
|
||||
|
||||
@ -6072,7 +6072,7 @@ retry:
|
||||
|
||||
if (c == QSE_CHAR_EOF)
|
||||
{
|
||||
SETERR_TOK (awk, QSE_AWK_ESTRNC);
|
||||
SETERR_LOC (awk, QSE_AWK_ESTRNC, &awk->tok.loc);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user