From 03234cabb7c35c8cf4fe417a6cad3b90e8b171ae Mon Sep 17 00:00:00 2001 From: Tor Egge Date: Tue, 14 Sep 2004 21:58:30 +0000 Subject: [PATCH] Correct polarity of packet mode bit. Problem discovered when 'boot0cfg -B -v -o packet -s 2 ad4' turned off packet mode while reporting it as being enabled. --- usr.sbin/boot0cfg/boot0cfg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/boot0cfg/boot0cfg.c b/usr.sbin/boot0cfg/boot0cfg.c index 592cbda3039a..21f0ce727655 100644 --- a/usr.sbin/boot0cfg/boot0cfg.c +++ b/usr.sbin/boot0cfg/boot0cfg.c @@ -61,7 +61,7 @@ static const struct { const char *tok; int def; } opttbl[] = { - {"packet", 1}, + {"packet", 0}, {"update", 1}, {"setdrv", 0} };