diff options
author | Bill Nottingham <notting@redhat.com> | 1999-03-18 01:01:45 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-03-18 01:01:45 +0000 |
commit | 54d96728833eabc23f4203ee7d2c834621f6b873 (patch) | |
tree | ea968aec4460ebbc381b3ae0f58c931ef514a611 /src/process.c | |
parent | 6aac6bb6c8ceea467a12dc5a6810d73cf516a445 (diff) | |
download | initscripts-54d96728833eabc23f4203ee7d2c834621f6b873.tar initscripts-54d96728833eabc23f4203ee7d2c834621f6b873.tar.gz initscripts-54d96728833eabc23f4203ee7d2c834621f6b873.tar.bz2 initscripts-54d96728833eabc23f4203ee7d2c834621f6b873.tar.xz initscripts-54d96728833eabc23f4203ee7d2c834621f6b873.zip |
don't output error messages if reading commands
Diffstat (limited to 'src/process.c')
-rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 548c1b67..f462a1de 100644 --- a/src/process.c +++ b/src/process.c @@ -163,7 +163,7 @@ int monitor(char *cmdname, int pid, int numfds, int *fds, int reexec, int quiet) for (x=0;x<(cmdargc-1);x++) { cmdargs[x+1]=tmpargs[x]; } - processArgs(cmdargc,cmdargs); + processArgs(cmdargc,cmdargs,1); } } } |