Fix argument name. This fixes EINVAL when boot0cfg uses GEOM_PART'

control interface.

MFC after:	3 days
This commit is contained in:
Andrey V. Elsukov 2011-10-25 04:15:45 +00:00
parent b3664a14cc
commit 9f772ce219
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=226714

View file

@ -378,7 +378,7 @@ write_mbr(const char *fname, int flags, u_int8_t *mbr, int mbr_size)
}
grq = gctl_get_handle();
gctl_ro_param(grq, "class", -1, "PART");
gctl_ro_param(grq, "geom", -1, pname);
gctl_ro_param(grq, "arg0", -1, pname);
gctl_ro_param(grq, "verb", -1, "bootcode");
gctl_ro_param(grq, "bootcode", mbr_size, mbr);
gctl_ro_param(grq, "flags", -1, "C");