X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;ds=sidebyside;f=unix%2Fuxpterm.c;h=6542fbbaf4180df75f4b50f89d1f930e63feb38f;hb=0cc6fb8bfea07360afeac83ba67aceffb56499c8;hp=370527a35f0496d96a6268d057b30e303dd4d9ca;hpb=a1f3b7a358adaa7c2a98359cd0373aa823eeb14b;p=PuTTY.git diff --git a/unix/uxpterm.c b/unix/uxpterm.c index 370527a3..6542fbba 100644 --- a/unix/uxpterm.c +++ b/unix/uxpterm.c @@ -17,6 +17,16 @@ Backend *select_backend(Conf *conf) return &pty_backend; } +void net_pending_errors(void) +{ + /* + * Stub version of net_pending_errors(), because gtkwin.c has to + * be prepared to call it when linked into PuTTY and therefore we + * have to avoid a link failure when linking gtkwin.c in turn into + * a non-networked application. + */ +} + int cfgbox(Conf *conf) { /* @@ -47,11 +57,14 @@ int main(int argc, char **argv) { extern int pt_main(int argc, char **argv); extern void pty_pre_init(void); /* declared in pty.c */ + int ret; cmdline_tooltype = TOOLTYPE_NONNETWORK; default_protocol = -1; pty_pre_init(); - return pt_main(argc, argv); + ret = pt_main(argc, argv); + cleanup_exit(ret); + return ret; /* not reached, but placates optimisers */ }