summaryrefslogtreecommitdiffstats
path: root/usr.sbin/cron/do_command.c
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2002-01-09 00:51:00 +0000
committermillert <millert@openbsd.org>2002-01-09 00:51:00 +0000
commitd5919ef3d78d2f79ed0d70fb463d09d201b8d9bc (patch)
treedcb2d4569af39c647f630ea07e48716d02db4478 /usr.sbin/cron/do_command.c
parentPut explicit register qualifiers into the inlines, so that they work correctly (diff)
downloadwireguard-openbsd-d5919ef3d78d2f79ed0d70fb463d09d201b8d9bc.tar.xz
wireguard-openbsd-d5919ef3d78d2f79ed0d70fb463d09d201b8d9bc.zip
Kill volatile now that jongjmp is history.
Diffstat (limited to 'usr.sbin/cron/do_command.c')
-rw-r--r--usr.sbin/cron/do_command.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/cron/do_command.c b/usr.sbin/cron/do_command.c
index c3c70bcf4a4..5f5d1c88b49 100644
--- a/usr.sbin/cron/do_command.c
+++ b/usr.sbin/cron/do_command.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: do_command.c,v 1.11 2001/10/24 17:28:16 millert Exp $ */
+/* $OpenBSD: do_command.c,v 1.12 2002/01/09 00:51:00 millert Exp $ */
/* Copyright 1988,1990,1993,1994 by Paul Vixie
* All rights reserved
*/
@@ -21,7 +21,7 @@
*/
#if !defined(lint) && !defined(LINT)
-static char rcsid[] = "$OpenBSD: do_command.c,v 1.11 2001/10/24 17:28:16 millert Exp $";
+static char rcsid[] = "$OpenBSD: do_command.c,v 1.12 2002/01/09 00:51:00 millert Exp $";
#endif
#include "cron.h"
@@ -65,8 +65,8 @@ static void
child_process(entry *e, user *u) {
int stdin_pipe[2], stdout_pipe[2];
char *usernm;
- char * volatile input_data, * volatile mailto;
- volatile int children = 0;
+ char *input_data, *mailto;
+ int children = 0;
Debug(DPROC, ("[%ld] child_process('%s')\n", (long)getpid(), e->cmd))
@@ -361,7 +361,7 @@ child_process(entry *e, user *u) {
int ch = getc(in);
if (ch != EOF) {
- FILE * volatile mail;
+ FILE *mail;
int bytes = 1;
int status = 0;