aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1995-08-17 00:50:01 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1995-08-17 00:50:01 +0000
commit80effc40da544a19953e82cfb519bdb3f1ee05eb (patch)
tree99ca1508285b483d8ac8bc48bd8dc3168b1e8b76
parent3122afe4bd5dff629e522e8901a23a140bc04d9c (diff)
Notes
-rw-r--r--sys/sys/acct.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/sys/acct.h b/sys/sys/acct.h
index 0ea88d8ea112..cda09df85848 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 */