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.
This commit is contained in:
Tor Egge 2004-09-14 21:58:30 +00:00
parent 49e5f5521d
commit 03234cabb7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=135249

View File

@ -61,7 +61,7 @@ static const struct {
const char *tok;
int def;
} opttbl[] = {
{"packet", 1},
{"packet", 0},
{"update", 1},
{"setdrv", 0}
};