2007-12-06 Mick Davis <mickd@goanna.iinet.net.au>

* remote-utils.c (readchar): Allow binary data in received messages.
This commit is contained in:
Daniel Jacobowitz 2007-12-06 14:21:26 +00:00
parent 45e8c884b5
commit b79d787e44
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-12-06 Mick Davis <mickd@goanna.iinet.net.au>
* remote-utils.c (readchar): Allow binary data in received messages.
2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
* win32-low.c (attaching): New global.

View File

@ -722,7 +722,7 @@ readchar (void)
bufp = buf;
bufcnt--;
return *bufp++ & 0x7f;
return *bufp++;
}
/* Read a packet from the remote machine, with error checking,