> > gets is an unsafe function, and it outputs and error message on Linux.
> > Using fgets makes this compile quietly.
> >
> > - if (!gets(rootpath))
> > + if (!fgets(rootpath, 256, stdin))
> > exit(0);
> > fprintf(stdout, "Enter an add path$ ");
> > - if (!gets(addpath))
> > + if (!fgets(addpath, 256, stdin))
> > exit(0);
>
> Fair enough ... however, don't you need to eat the newline with this patch?
>
> stroff = strlen(path) - 1;
> while (stroff >= path && apr_isspace(stroff)) {
> path[stroff--] = '\0';
> }
Probably. I didn't think of that problem.
Ryan
_______________________________________________________________________________
Ryan Bloom [EMAIL PROTECTED]
406 29th St.
San Francisco, CA 94131
-------------------------------------------------------------------------------