From: Kurt Zeilenga Date: Sat, 12 May 2001 18:43:06 +0000 (+0000) Subject: if continuation line starts with a tab, rewrite it to a space X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~1415 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0445405299ebc97d0f11585031fb1abef031caf9;p=openldap if continuation line starts with a tab, rewrite it to a space --- diff --git a/servers/slapd/config.c b/servers/slapd/config.c index 761c970731..a5b3aa63c8 100644 --- a/servers/slapd/config.c +++ b/servers/slapd/config.c @@ -2025,6 +2025,9 @@ fp_getline( FILE *fp, int *lineno ) return( line ); } + /* change leading whitespace to a space */ + buf[0] = ' '; + CATLINE( buf ); (*lineno)++; }