Use MAXARGS... we should actually check for limits.h's ARG_MAX and

use this everywhere... but that's for another day.
This commit is contained in:
Kurt Zeilenga 1999-01-06 20:27:27 +00:00
parent 9c6d384b9a
commit ed33462bdf

View file

@ -63,7 +63,7 @@ main( int argc, char **argv )
{
int i, stop, status;
char *linep, *buf, *sbindir;
char *args[10];
char *args[MAXARGS];
char buf2[20], buf3[20];
char line[BUFSIZ];
char cmd[MAXPATHLEN];