1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 03:22:48 -05:00

Open Transport stuff now actually compiles.

Various stuff caught up to latest versions.

[originally from svn r192]
This commit is contained in:
Ben Harris
1999-08-02 22:32:39 +00:00
parent d6b7448ab8
commit 9eec9c9f90
5 changed files with 41 additions and 31 deletions

10
mac.c
View File

@ -1,4 +1,4 @@
/* $Id: mac.c,v 1.1.2.25 1999/08/02 08:04:31 ben Exp $ */
/* $Id: mac.c,v 1.1.2.26 1999/08/02 22:32:38 ben Exp $ */
/*
* Copyright (c) 1999 Ben Harris
* All rights reserved.
@ -148,13 +148,13 @@ static void mac_startup(void) {
/* Initialise networking */
#ifdef WITH_OPENTRANSPORT
if ((*opentpt_stack.init)() == 0)
net_stack = &opentpt_stack;
if ((*otpt_stack.init)() == 0)
net_stack = &otpt_stack;
else
#endif
#ifdef WITH_MACTCP
if ((*mactcp_stack.init)() == 0)
net_stack = &mactcp_stack;
if ((*mtcp_stack.init)() == 0)
net_stack = &mtcp_stack;
else
#endif
fatalbox("No useful TCP/IP stack found");