Differences From Artifact [74f9ca7c3e]:
- File scp.c — part of check-in [126e861724] at 2001-09-18 14:41:07 on branch trunk — terminal.c's from_backend() no longer calls term_out(), because term_out() can in turn call ldisc_send() which calls back to from_backend() when local echo is enabled. This was giving rise to crazy re-entrancy stuff and stack overflows. Instead from_backend() deposits its data in a bufchain which term_out() empties the next time it's called. (user: simon size: 57183)
To Artifact [bdda2c6736]:
- File scp.c — part of check-in [a8202e3593] at 2001-09-19 15:07:15 on branch trunk — Fix pasting of newlines in local line editing mode. Possibly not a very _good_ fix; something might want doing after the release. (user: simon size: 57200)
| ︙ | |||
87 88 89 90 91 92 93 | 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | - + |
*/
#define MAX_SCP_BUFSIZE 16384
void logevent(char *string)
{
}
|
| ︙ |