summaryrefslogtreecommitdiffstats
path: root/usr.sbin/boot0cfg
diff options
context:
space:
mode:
authortegge <tegge@FreeBSD.org>2004-09-14 21:58:30 +0000
committertegge <tegge@FreeBSD.org>2004-09-14 21:58:30 +0000
commitb6dedd63b0128b14a5322e9b57aaaa558c4d0744 (patch)
tree14d30dfef68a2c931dccf5f8c886615fc66d48ef /usr.sbin/boot0cfg
parent36663b16f4952ea8220f533e99ceebfac7da4c54 (diff)
downloadFreeBSD-src-b6dedd63b0128b14a5322e9b57aaaa558c4d0744.zip
FreeBSD-src-b6dedd63b0128b14a5322e9b57aaaa558c4d0744.tar.gz
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.
Diffstat (limited to 'usr.sbin/boot0cfg')
-rw-r--r--usr.sbin/boot0cfg/boot0cfg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/boot0cfg/boot0cfg.c b/usr.sbin/boot0cfg/boot0cfg.c
index 592cbda..21f0ce7 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}
};
OpenPOWER on IntegriCloud