]> git.sur5r.net Git - openldap/commitdiff
if continuation line starts with a tab, rewrite it to a space
authorKurt Zeilenga <kurt@openldap.org>
Sat, 12 May 2001 18:43:06 +0000 (18:43 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Sat, 12 May 2001 18:43:06 +0000 (18:43 +0000)
servers/slapd/config.c

index 761c9707310bdfc6dcd43a6c285e45fc7564f146..a5b3aa63c81c8177309106f0d62b52742cdabbb9 100644 (file)
@@ -2025,6 +2025,9 @@ fp_getline( FILE *fp, int *lineno )
                        return( line );
                }
 
+               /* change leading whitespace to a space */
+               buf[0] = ' ';
+
                CATLINE( buf );
                (*lineno)++;
        }