mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-14 01:27:35 -05:00
Line discipline module now uses dynamically allocated data. Also
fixed one or two other minor problems. [originally from svn r2141]
This commit is contained in:
6
raw.c
6
raw.c
@ -186,6 +186,11 @@ static int raw_ldisc(void *handle, int option)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void raw_provide_ldisc(void *handle, void *ldisc)
|
||||
{
|
||||
/* This is a stub. */
|
||||
}
|
||||
|
||||
static int raw_exitcode(void *handle)
|
||||
{
|
||||
/* Exit codes are a meaningless concept in the Raw protocol */
|
||||
@ -202,6 +207,7 @@ Backend raw_backend = {
|
||||
raw_exitcode,
|
||||
raw_sendok,
|
||||
raw_ldisc,
|
||||
raw_provide_ldisc,
|
||||
raw_unthrottle,
|
||||
1
|
||||
};
|
||||
|
Reference in New Issue
Block a user