summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall/tcpip.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/sysinstall/tcpip.c')
-rw-r--r--usr.sbin/sysinstall/tcpip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/tcpip.c b/usr.sbin/sysinstall/tcpip.c
index 2c9d714..7ece498 100644
--- a/usr.sbin/sysinstall/tcpip.c
+++ b/usr.sbin/sysinstall/tcpip.c
@@ -1,5 +1,5 @@
/*
- * $Id: tcpip.c,v 1.20 1995/05/26 21:37:53 jkh Exp $
+ * $Id: tcpip.c,v 1.21 1995/05/26 22:08:59 jkh Exp $
*
* Copyright (c) 1995
* Gary J Palmer. All rights reserved.
@@ -137,7 +137,7 @@ static Layout layout[] = {
{ NULL },
};
-#define _validByte(b) ((b) > 0 && (b) < 255)
+#define _validByte(b) ((b) >= 0 && (b) < 255)
/* whine */
static void
OpenPOWER on IntegriCloud