Fixed small mistake that would prevent forwarding requests.
This commit is contained in:
parent
069c146656
commit
989d7edc07
1 changed files with 1 additions and 1 deletions
|
@ -962,8 +962,8 @@ cp
|
||||||
{
|
{
|
||||||
if(cl->buffer[i] == '\n')
|
if(cl->buffer[i] == '\n')
|
||||||
{
|
{
|
||||||
cl->buffer[i] = 0; /* turn end-of-line into end-of-string */
|
|
||||||
p = i + 1;
|
p = i + 1;
|
||||||
|
cl->buffer[p] = 0; /* add end-of-string so we can use sscanf */
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue