diff options
author | 2005-07-12 19:28:53 +0000 | |
---|---|---|
committer | 2005-07-12 19:28:53 +0000 | |
commit | ac62d723f3394fcfb6cfc920bb3670fcfe1f0fc3 (patch) | |
tree | 1b3ff5194e637e924a14f1fa9a2f61fd3eceb00d /sys/dev/microcode | |
parent | h/w doesn't decrypt rx frames in monitor mode so don't try to remove the (diff) | |
download | wireguard-openbsd-ac62d723f3394fcfb6cfc920bb3670fcfe1f0fc3.tar.xz wireguard-openbsd-ac62d723f3394fcfb6cfc920bb3670fcfe1f0fc3.zip |
write ds1 ctrl mcode where we wanted the ds1e varient
Diffstat (limited to 'sys/dev/microcode')
-rw-r--r-- | sys/dev/microcode/yds/build.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/microcode/yds/build.c b/sys/dev/microcode/yds/build.c index 95f98780522..55f44c6a40d 100644 --- a/sys/dev/microcode/yds/build.c +++ b/sys/dev/microcode/yds/build.c @@ -1,4 +1,4 @@ -/* $OpenBSD: build.c,v 1.2 2005/05/17 18:48:52 jason Exp $ */ +/* $OpenBSD: build.c,v 1.3 2005/07/12 19:28:53 deraadt Exp $ */ /* * Copyright (c) 2004 Theo de Raadt <deraadt@openbsd.org> @@ -47,7 +47,7 @@ main(int argc, char *argv[]) bcopy(yds_dsp_mcode, &yf->data[0], yf->dsplen); bcopy(yds_ds1_ctrl_mcode, &yf->data[yf->dsplen], yf->ds1len); - bcopy(yds_ds1_ctrl_mcode, &yf->data[yf->dsplen + yf->ds1len], + bcopy(yds_ds1e_ctrl_mcode, &yf->data[yf->dsplen + yf->ds1len], yf->ds1elen); printf("creating %s length %d [%d+%d+%d]\n", |