diff options
| author | Brian Somers <brian@FreeBSD.org> | 1998-09-17 00:45:27 +0000 |
|---|---|---|
| committer | Brian Somers <brian@FreeBSD.org> | 1998-09-17 00:45:27 +0000 |
| commit | 1595bacdf6e2ea2a51927080a92a7838d312604c (patch) | |
| tree | 771339396e8e687d8d1bdd1030330529d7417004 /usr.sbin/ppp/ipcp.c | |
| parent | 0122d745f51682881bea6ca458027864d460ae81 (diff) | |
Notes
Diffstat (limited to 'usr.sbin/ppp/ipcp.c')
| -rw-r--r-- | usr.sbin/ppp/ipcp.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/usr.sbin/ppp/ipcp.c b/usr.sbin/ppp/ipcp.c index d580edd47a3f..40e1dfa2313d 100644 --- a/usr.sbin/ppp/ipcp.c +++ b/usr.sbin/ppp/ipcp.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: ipcp.c,v 1.64 1998/08/26 17:39:37 brian Exp $ + * $Id: ipcp.c,v 1.65 1998/09/04 18:25:59 brian Exp $ * * TODO: * o More RFC1772 backward compatibility @@ -33,9 +33,6 @@ #include <sys/sockio.h> #include <sys/un.h> -#ifndef NOALIAS -#include <alias.h> -#endif #include <fcntl.h> #include <resolv.h> #include <stdlib.h> @@ -44,6 +41,13 @@ #include <termios.h> #include <unistd.h> +#ifndef NOALIAS +#ifdef __OpenBSD__ +#include "alias.h" +#else +#include <alias.h> +#endif +#endif #include "ua.h" #include "defs.h" #include "command.h" |
