Fix another bug in meta.c.
This commit is contained in:
parent
e88ea7277a
commit
d35a510fff
1 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@
|
||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
$Id: meta.c,v 1.1.2.47 2003/10/11 14:18:52 guus Exp $
|
$Id: meta.c,v 1.1.2.48 2003/10/12 11:40:00 guus Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
|
@ -150,7 +150,7 @@ bool receive_meta(connection_t *c)
|
||||||
receive_tcppacket(c, c->buffer, c->tcplen);
|
receive_tcppacket(c, c->buffer, c->tcplen);
|
||||||
|
|
||||||
c->buflen -= c->tcplen;
|
c->buflen -= c->tcplen;
|
||||||
lenin -= c->tcplen;
|
lenin -= c->tcplen - oldlen;
|
||||||
memmove(c->buffer, c->buffer + c->tcplen, c->buflen);
|
memmove(c->buffer, c->buffer + c->tcplen, c->buflen);
|
||||||
oldlen = 0;
|
oldlen = 0;
|
||||||
c->tcplen = 0;
|
c->tcplen = 0;
|
||||||
|
|
Loading…
Reference in a new issue