<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.28.2">
</HEAD>
<BODY>
I found that in bb-hosts you can not indent "include" lines.<BR>
IE the lines can't start with white space.<BR>
<BR>
I found that in lib/stackio.c the buffer was not getting "sanitize"d:<BR>
<BR>
Index: lib/stackio.c<BR>
===================================================================<BR>
--- lib/stackio.c       (revision 6223)<BR>
+++ lib/stackio.c       (working copy)<BR>
@@ -408,6 +408,7 @@<BR>
        result = unlimfgets(buffer, fdhead->fd);<BR>
<BR>
        if (result) {<BR>
+        sanitize_input(buffer, 0, 0);<BR>
                if ( (strncmp(STRBUF(buffer), "include ", 8) == 0) ||<BR>
                     (extraincl && (strncmp(STRBUF(buffer), extraincl, strlen(extraincl)) == 0)) ) {<BR>
                        char *newfn, *eol;<BR>
<BR>
<BR>
</BODY>
</HTML>