* catgets/gencat.c (read_input_file): Use isblank and not isspace
	to recognize second character in comment line.
This commit is contained in:
Ulrich Drepper 2000-04-30 10:22:19 +00:00
parent edecfcda2a
commit c3880fbdb7
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2000-04-30 Ulrich Drepper <drepper@redhat.com>
* catgets/gencat.c (read_input_file): Use isblank and not isspace
to recognize second character in comment line.
* sysdeps/unix/sysv/linux/if_index.c (if_nameindex): Set errno to
ENOBUFS if we are out of memory.

View file

@ -327,7 +327,7 @@ read_input_file (struct catalog *current, const char *fname)
used = 0;
if (this_line[0] == '$')
{
if (isspace (this_line[1]))
if (isblank (this_line[1]))
/* This is a comment line. Do nothing. */;
else if (strncmp (&this_line[1], "set", 3) == 0)
{