diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-02-18 20:14:02 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-02-18 20:14:02 +0000 |
commit | f0715e9df24f6e02072eff3a198414931d5ffcf0 (patch) | |
tree | e1437dee07268e77bf36d360bc779ff75bf203c2 | |
parent | 9d12880bde356edc1caf95ce9c16eda5cd362a71 (diff) |
Define CAPITALIZE_FOR_PS so children are capitalized in ps (like before).
-rw-r--r-- | usr.sbin/cron/config.h | 4 | ||||
-rw-r--r-- | usr.sbin/cron/globals.h | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/usr.sbin/cron/config.h b/usr.sbin/cron/config.h index 4f7d67f4ab7..0866983933d 100644 --- a/usr.sbin/cron/config.h +++ b/usr.sbin/cron/config.h @@ -1,4 +1,4 @@ -/* $OpenBSD: config.h,v 1.6 2001/02/18 19:48:31 millert Exp $ */ +/* $OpenBSD: config.h,v 1.7 2001/02/18 20:14:01 millert Exp $ */ /* Copyright 1988,1990,1993,1994 by Paul Vixie * All rights reserved @@ -85,6 +85,8 @@ */ #define SYSLOG /*-*/ +#define CAPITALIZE_FOR_PS /*-*/ + /* if your OS supports a BSD-style login.conf file */ #define LOGIN_CAP /*-*/ diff --git a/usr.sbin/cron/globals.h b/usr.sbin/cron/globals.h index a6063785b1f..fcbc52274b7 100644 --- a/usr.sbin/cron/globals.h +++ b/usr.sbin/cron/globals.h @@ -1,4 +1,4 @@ -/* $OpenBSD: globals.h,v 1.1 2001/02/18 19:48:35 millert Exp $ */ +/* $OpenBSD: globals.h,v 1.2 2001/02/18 20:14:01 millert Exp $ */ /* * Copyright (c) 1997,2000 by Internet Software Consortium, Inc. @@ -55,7 +55,7 @@ XTRN const char *DowNames[] #endif ; -XTRN const char *ProgramName INIT("amnesia"); +XTRN char *ProgramName INIT("amnesia"); XTRN int LineNumber INIT(0); XTRN time_t StartTime INIT(0); XTRN time_min timeRunning INIT(0); |