]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Sun, 30 Apr 2000 10:22:19 +0000 (10:22 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 30 Apr 2000 10:22:19 +0000 (10:22 +0000)
* catgets/gencat.c (read_input_file): Use isblank and not isspace
to recognize second character in comment line.

ChangeLog
catgets/gencat.c

index e2883555b39a0181291762f95b33d99c754cdd55..fc379db633f4402c1ba17216eaf393c1fbbe051a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
 
index 4609c636813da0f8c1da263d17c8128de892d461..e8bf368eea4ac2e7c62b0aa9603009fb78d025a1 100644 (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)
            {