From owner-cvs-sys Mon Jan 1 09:05:15 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id JAA27446 for cvs-sys-outgoing; Mon, 1 Jan 1996 09:05:15 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id JAA27436 Mon, 1 Jan 1996 09:05:10 -0800 (PST) Date: Mon, 1 Jan 1996 09:05:10 -0800 (PST) From: Peter Wemm Message-Id: <199601011705.JAA27436@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/sys systm.h Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk peter 96/01/01 09:05:08 Modified: sys/kern kern_sysctl.c sys/sys systm.h Log: Fix the reversed source and dest args to bcopy() in the kernel space sysctl handler (ouch!) Add a "const" qualifier to the source of the copyin() and copyout() functions - the other const warning in kern_sysctl.c was silenced when copyout was declared as having a const source.. (which it is) Revision Changes Path 1.59 +2 -2 src/sys/kern/kern_sysctl.c 1.29 +3 -3 src/sys/sys/systm.h