summaryrefslogtreecommitdiff
path: root/resolv/res_hconf.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-03-01 21:56:06 +0000
committerUlrich Drepper <drepper@redhat.com>1999-03-01 21:56:06 +0000
commit6dc25b55ba0026ab1cc6d89c4f39346e553cab6b (patch)
tree26de703227a7365b974fbc43a7f9e5f014066d07 /resolv/res_hconf.c
parent9f6b6d8d19c17bdb5a30573c0ffc64e4177c7a49 (diff)
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>
Diffstat (limited to 'resolv/res_hconf.c')
-rw-r--r--resolv/res_hconf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/resolv/res_hconf.c b/resolv/res_hconf.c
index 3905360d50..06306f7726 100644
--- a/resolv/res_hconf.c
+++ b/resolv/res_hconf.c
@@ -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);