Re: [PATCH 15/15] kconf: Check for eof from input stream.

From: Roman Zippel
Date: Sun Jan 08 2006 - 13:45:40 EST


Hi,

On Wednesday 04 January 2006 23:01, Ben Collins wrote:

> +static char *fgets_check_stream(char *s, int size, FILE *stream)
> +{
> + char *ret = fgets(s, size, stream);
> +
> + if (ret == NULL && feof(stream)) {
> + printf(_("aborted!\n\n"));
> + printf(_("Console input is closed. "));
> + printf(_("Run 'make oldconfig' to update configuration.\n\n"));
> + exit(1);
> + }
> +
> + return ret;
> +}

What problem does this solve? conf should finish normally anyway and just set
everything to the default.

bye, Roman

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/