aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/ppp/command.c
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>1999-04-26 08:54:34 +0000
committerBrian Somers <brian@FreeBSD.org>1999-04-26 08:54:34 +0000
commit7884358fddd2d3a4f25857890cb36b11e558985f (patch)
tree99a3bfe69f5b3fed6226154f1cb4e9d3a3514dda /usr.sbin/ppp/command.c
parent119386a38b83c9f91ef2cef80153425fe523dd14 (diff)
downloadsrc-7884358fddd2d3a4f25857890cb36b11e558985f.tar.gz
src-7884358fddd2d3a4f25857890cb36b11e558985f.zip
Add support for NetBSD
Notes
Notes: svn path=/head/; revision=46086
Diffstat (limited to 'usr.sbin/ppp/command.c')
-rw-r--r--usr.sbin/ppp/command.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/ppp/command.c b/usr.sbin/ppp/command.c
index 830e95cf60ad..764497876276 100644
--- a/usr.sbin/ppp/command.c
+++ b/usr.sbin/ppp/command.c
@@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Id: command.c,v 1.189 1999/03/19 00:05:32 brian Exp $
+ * $Id: command.c,v 1.190 1999/03/25 23:36:23 brian Exp $
*
*/
#include <sys/param.h>
@@ -42,10 +42,10 @@
#include <unistd.h>
#ifndef NOALIAS
-#ifdef __OpenBSD__
-#include "alias.h"
-#else
+#ifdef __FreeBSD__
#include <alias.h>
+#else
+#include "alias.h"
#endif
#endif
#include "defs.h"
@@ -141,7 +141,7 @@
#define NEG_DNS 52
const char Version[] = "2.11";
-const char VersionDate[] = "$Date: 1999/03/19 00:05:32 $";
+const char VersionDate[] = "$Date: 1999/03/25 23:36:23 $";
static int ShowCommand(struct cmdargs const *);
static int TerminalCommand(struct cmdargs const *);