summaryrefslogtreecommitdiff
path: root/read.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2011-06-12 16:22:04 +0000
committerPaul Smith <psmith@gnu.org>2011-06-12 16:22:04 +0000
commit67dd56050ce098744ba739937278ae6c8b55b390 (patch)
tree10c7d1ee47a4623db259a56152f9c33e97311161 /read.c
parent469aaf53f3bc56d66c9e74aab9a40d2d5a053468 (diff)
downloadmake-67dd56050ce098744ba739937278ae6c8b55b390.tar.gz
Fix another error related to whitespace handling in archives.
Newer version of VMS support strncasecmp() so update the config.h.
Diffstat (limited to 'read.c')
-rw-r--r--read.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/read.c b/read.c
index c87d4a7f..b0120942 100644
--- a/read.c
+++ b/read.c
@@ -3044,16 +3044,16 @@ parse_file_seq (char **stringp, unsigned int size, int stopchar,
nlen -= (n + 1) - tp;
tp = n + 1;
- /* If we have just "lib(", part of something like
- "lib( a b)", go to the next item. */
- if (! nlen)
- continue;
-
/* We can stop looking now. */
break;
}
}
while (*e != '\0');
+
+ /* If we have just "lib(", part of something like "lib( a b)",
+ go to the next item. */
+ if (! nlen)
+ continue;
}
}