Download raw body.
vmd: fix copy paste error
On Wed, May 06, 2026 at 07:52:40PM +0000, Jan Schreiber wrote:
> Hi,
>
> this looks like a copy paste error, fix below.
>
> Jan
>
> diff --git usr.sbin/vmd/vmd.c usr.sbin/vmd/vmd.c
> index 0a8b696a2bf..bd63a7dae30 100644
> --- usr.sbin/vmd/vmd.c
> +++ usr.sbin/vmd/vmd.c
> @@ -1429,7 +1429,7 @@ vm_instance(struct privsep *ps, struct vmd_vm **vm_parent,
> }
> if (vmc_parent->vmc_insflags & VMOP_CREATE_INSTANCE) {
> vmc->vmc_insowner.gid = vmc_parent->vmc_insowner.gid;
> - vmc->vmc_insowner.uid = vmc_parent->vmc_insowner.gid;
> + vmc->vmc_insowner.uid = vmc_parent->vmc_insowner.uid;
> vmc->vmc_insflags = vmc_parent->vmc_insflags;
> } else {
> vmc->vmc_insowner.gid = 0;
>
thanks, committed.
vmd: fix copy paste error