From a2e41ee444d1e75cd280a34fc7f46666c2ac1597 Mon Sep 17 00:00:00 2001 From: Johan Danielsson Date: Mon, 13 Jul 1998 13:00:21 +0000 Subject: [PATCH] skip ws before checking for comment git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5080 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/config_file.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/krb5/config_file.c b/lib/krb5/config_file.c index bbe659f83..442884770 100644 --- a/lib/krb5/config_file.c +++ b/lib/krb5/config_file.c @@ -315,8 +315,6 @@ krb5_config_parse_file (const char *fname, krb5_config_section **res) ++p; if (*p == '#' || *p == ';') continue; - while(isspace(*p)) - ++p; if (*p == '[') { ret = parse_section(p, &s, res); if (ret)