mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 04:50:07 +00:00
Update.
* resolv/res_hconf.c (parse_line): Skip empty lines. Bug reported by Marcus Harnisch <marcus@harnisch.isdn.cs.tu-berlin.de>. 1999-03-01 Andreas Jaeger <aj@arthur.rhein-neckar.de>
This commit is contained in:
parent
9f6b6d8d19
commit
6dc25b55ba
@ -1,3 +1,8 @@
|
||||
1999-03-01 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
||||
|
||||
* resolv/res_hconf.c (parse_line): Skip empty lines. Bug reported
|
||||
by Marcus Harnisch <marcus@harnisch.isdn.cs.tu-berlin.de>.
|
||||
|
||||
1999-03-01 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
||||
|
||||
* sysdeps/i386/sys/ucontext.h (ucontext): Rename field uc_links to
|
||||
|
@ -263,7 +263,8 @@ parse_line (const char *fname, int line_num, const char *str)
|
||||
|
||||
str = skip_ws (str);
|
||||
|
||||
if (*str == '#') return; /* skip line comment */
|
||||
/* skip line comment and empty lines: */
|
||||
if (*str == '\0' || *str == '#') return;
|
||||
|
||||
start = str;
|
||||
str = skip_string (str);
|
||||
|
Loading…
Reference in New Issue
Block a user