mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-04 04:52:47 -05:00
Update for Simon's from_backend changes.
[originally from svn r3111]
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
/* $Id: macterm.c,v 1.72 2003/03/29 23:07:55 ben Exp $ */
|
||||
/* $Id: macterm.c,v 1.73 2003/04/12 21:06:34 ben Exp $ */
|
||||
/*
|
||||
* Copyright (c) 1999 Simon Tatham
|
||||
* Copyright (c) 1999, 2002 Ben Harris
|
||||
@ -157,7 +157,7 @@ void mac_startsession(Session *s)
|
||||
s->logctx = log_init(s->term, &s->cfg);
|
||||
term_provide_logctx(s->term, s->logctx);
|
||||
|
||||
errmsg = s->back->init(s->term, &s->backhandle, &s->cfg, s->cfg.host,
|
||||
errmsg = s->back->init(s, &s->backhandle, &s->cfg, s->cfg.host,
|
||||
s->cfg.port, &s->realhost, s->cfg.tcp_nodelay);
|
||||
if (errmsg != NULL)
|
||||
fatalbox("%s", errmsg);
|
||||
@ -1847,6 +1847,13 @@ int askappend(void *frontend, Filename filename)
|
||||
return 2;
|
||||
}
|
||||
|
||||
int from_backend(void *frontend, int is_stderr, const char *data, int len)
|
||||
{
|
||||
Session *s = frontend;
|
||||
|
||||
return term_data(s->term, is_stderr, data, len);
|
||||
}
|
||||
|
||||
/*
|
||||
* Emacs magic:
|
||||
* Local Variables:
|
||||
|
Reference in New Issue
Block a user