From 80effc40da544a19953e82cfb519bdb3f1ee05eb Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Thu, 17 Aug 1995 00:50:01 +0000 Subject: [PATCH] Close PR kern/682: >Synopsis: to shot command name in Submitted by: Wolfram Schneider --- sys/sys/acct.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/sys/acct.h b/sys/sys/acct.h index 0ea88d8ea11..cda09df8584 100644 --- a/sys/sys/acct.h +++ b/sys/sys/acct.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)acct.h 8.2 (Berkeley) 1/21/94 - * $Id: acct.h,v 1.3 1994/08/21 04:41:31 paul Exp $ + * $Id: acct.h,v 1.4 1994/09/26 21:09:15 davidg Exp $ */ #ifndef _SYS_ACCT_H_ @@ -49,8 +49,9 @@ */ typedef u_short comp_t; +#define AC_COMM_LEN 16 struct acct { - char ac_comm[10]; /* command name */ + char ac_comm[AC_COMM_LEN]; /* command name */ comp_t ac_utime; /* user time */ comp_t ac_stime; /* system time */ comp_t ac_etime; /* elapsed time */