mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
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:
parent
9c6d384b9a
commit
ed33462bdf
1 changed files with 1 additions and 1 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Reference in a new issue