summaryrefslogtreecommitdiffstats
path: root/sys/compat
diff options
context:
space:
mode:
authormarcel <marcel@FreeBSD.org>2001-09-28 01:15:30 +0000
committermarcel <marcel@FreeBSD.org>2001-09-28 01:15:30 +0000
commit1fa4448072f5840ed9b482fa9cd618143afbbd0b (patch)
tree979383aa2af738bdf993633085409e317d61baf0 /sys/compat
parent921e3ce2f29d9461380019a03cc47134d5efdd2e (diff)
downloadFreeBSD-src-1fa4448072f5840ed9b482fa9cd618143afbbd0b.zip
FreeBSD-src-1fa4448072f5840ed9b482fa9cd618143afbbd0b.tar.gz
Swap the src and dst arguments of the bcopy added in the
previous commit. It ain't memcpy... *cough*
Diffstat (limited to 'sys/compat')
-rw-r--r--sys/compat/linux/linux_ipc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_ipc.c b/sys/compat/linux/linux_ipc.c
index a26871b..aa4deef 100644
--- a/sys/compat/linux/linux_ipc.c
+++ b/sys/compat/linux/linux_ipc.c
@@ -227,7 +227,7 @@ linux_semctl(struct thread *td, struct linux_semctl_args *args)
/* Make sure the arg parameter can be copied in. */
unptr = stackgap_alloc(&sg, sizeof(union semun));
- bcopy(unptr, &args->arg, sizeof(union semun));
+ bcopy(&args->arg, unptr, sizeof(union semun));
bsd_args.semid = args->semid;
bsd_args.semnum = args->semnum;
OpenPOWER on IntegriCloud