diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-12-30 01:33:15 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-12-30 01:33:15 +0000 |
commit | d2e4c03c9afa5edab347e7b8547f8394e284bab4 (patch) | |
tree | d7eaadff0172e6e64811ec4ee9af89083d2cc658 /sys/miscfs/procfs | |
parent | d4fd260b9993a9631ba920d93a71104e5a8f00b2 (diff) |
fix a nasty code typo; rotel@indigo.ie
Diffstat (limited to 'sys/miscfs/procfs')
-rw-r--r-- | sys/miscfs/procfs/procfs_status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/miscfs/procfs/procfs_status.c b/sys/miscfs/procfs/procfs_status.c index 143cb53ddca..9d2357cb4b5 100644 --- a/sys/miscfs/procfs/procfs_status.c +++ b/sys/miscfs/procfs/procfs_status.c @@ -1,4 +1,4 @@ -/* $OpenBSD: procfs_status.c,v 1.2 1996/04/21 22:28:18 deraadt Exp $ */ +/* $OpenBSD: procfs_status.c,v 1.3 1997/12/30 01:33:14 deraadt Exp $ */ /* $NetBSD: procfs_status.c,v 1.11 1996/03/16 23:52:50 christos Exp $ */ /* @@ -74,7 +74,7 @@ procfs_dostatus(curp, p, pfs, uio) return (EOPNOTSUPP); pid = p->p_pid; - ppid = p->p_pptr ? p->p_pptr->p_pid : 0, + ppid = p->p_pptr ? p->p_pptr->p_pid : 0; pgid = p->p_pgrp->pg_id; sess = p->p_pgrp->pg_session; sid = sess->s_leader ? sess->s_leader->p_pid : 0; |