From 2c14da046f394ea665513f323eb5872ed295e081 Mon Sep 17 00:00:00 2001 From: Jacques Vidrine Date: Sat, 4 Oct 2003 16:14:25 +0000 Subject: MFS 1.10.2.5: Unbreak read/write behavior (introduced in previous revision). --- sys/miscfs/procfs/procfs_regs.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sys/miscfs/procfs/procfs_regs.c b/sys/miscfs/procfs/procfs_regs.c index 84be07d038dd..b0e9ea842c3f 100644 --- a/sys/miscfs/procfs/procfs_regs.c +++ b/sys/miscfs/procfs/procfs_regs.c @@ -57,8 +57,6 @@ procfs_doregs(curp, p, pfs, uio) { int error; struct reg r; - char *kv; - int kl; /* Can't trace a process that's currently exec'ing. */ if ((p->p_flag & P_INEXEC) != 0) @@ -70,7 +68,7 @@ procfs_doregs(curp, p, pfs, uio) error = procfs_read_regs(p, &r); if (error == 0) - error = uiomove(&r, sizeof(r), uio); + error = uiomove_frombuf(&r, sizeof(r), uio); if (error == 0 && uio->uio_rw == UIO_WRITE) { if (p->p_stat != SSTOP) error = EBUSY; -- cgit v1.2.3