summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2000-05-29 01:07:50 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2000-05-29 01:07:50 +0000
commit80b107228b6a87f1b31126ccdd869c09dae3ac9a (patch)
treed5edd8f5603a27825934cdddcb49923f32b84a6e /usr.bin
parentb2bee1a003808b0ef2386c649689dbbce2e5b55f (diff)
Print space between the last process to attach/use and the access time.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ipcs/ipcs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ipcs/ipcs.c b/usr.bin/ipcs/ipcs.c
index c88b5593b6e..a48eca342d4 100644
--- a/usr.bin/ipcs/ipcs.c
+++ b/usr.bin/ipcs/ipcs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ipcs.c,v 1.10 2000/05/01 21:49:40 deraadt Exp $ */
+/* $OpenBSD: ipcs.c,v 1.11 2000/05/29 01:07:49 angelos Exp $ */
/* $NetBSD: ipcs.c,v 1.10.6.1 1996/06/07 01:53:47 thorpej Exp $ */
/*
@@ -303,7 +303,7 @@ main(argc, argv)
msqptr->msg_lrpid);
if (option & TIME)
- printf("%s %s %s",
+ printf(" %s %s %s",
stime_buf,
rtime_buf,
ctime_buf);
@@ -401,7 +401,7 @@ main(argc, argv)
shmptr->shm_lpid);
if (option & TIME)
- printf("%s %s %s",
+ printf(" %s %s %s",
atime_buf,
dtime_buf,
ctime_buf);
@@ -494,7 +494,7 @@ main(argc, argv)
semaptr->sem_nsems);
if (option & TIME)
- printf("%s %s",
+ printf(" %s %s",
otime_buf,
ctime_buf);