Swap the arguments for CP so we copy the correct source and

destination.
This commit is contained in:
Paul Saab 2005-02-18 22:14:40 +00:00
parent 456f9a140f
commit b7820945ac
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=142067

View File

@ -457,10 +457,10 @@ freebsd32_modstat(struct thread *td, struct freebsd32_modstat_args *uap)
id = mod->id;
refs = mod->refs;
name = mod->name;
CP(data32, mod->data, intval);
CP(data32, mod->data, uintval);
CP(data32, mod->data, longval);
CP(data32, mod->data, ulongval);
CP(mod->data, data32, intval);
CP(mod->data, data32, uintval);
CP(mod->data, data32, longval);
CP(mod->data, data32, ulongval);
MOD_SUNLOCK;
stat32 = uap->stat;