diff options
author | pst <pst@FreeBSD.org> | 1994-11-06 06:27:04 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1994-11-06 06:27:04 +0000 |
commit | b8ab9277ff1fe5a1dca5fe3b4f08cc4dcb3c5178 (patch) | |
tree | 637c6b9597a506848a14f037bb109ae9b285b66a /bin/sh | |
parent | 5cf4605dc7d05b635bfd04bd95003e9c83045de2 (diff) | |
download | FreeBSD-src-b8ab9277ff1fe5a1dca5fe3b4f08cc4dcb3c5178.zip FreeBSD-src-b8ab9277ff1fe5a1dca5fe3b4f08cc4dcb3c5178.tar.gz |
Add end of line check so mkinit doesn't produce garbage if you have a
MKINIT line that doesn't have a comment on it (we have at least two).
This mkinit program was written by someone who obviously doesn't believe
in defensive programming. :-( There's a LOT of work that needs to be done
on this thing. :-( :-( :-(
Diffstat (limited to 'bin/sh')
-rw-r--r-- | bin/sh/mkinit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/sh/mkinit.c b/bin/sh/mkinit.c index adc79cc..433bbf7 100644 --- a/bin/sh/mkinit.c +++ b/bin/sh/mkinit.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: mkinit.c,v 1.2 1994/09/24 02:57:54 davidg Exp $ */ #ifndef lint @@ -352,7 +352,7 @@ dodecl(line1, fp) if (! amiddecls) addchar('\n', &decls); q = NULL; - for (p = line1 + 6 ; *p != '=' && *p != '/' ; p++); + for (p = line1 + 6 ; *p != '=' && *p != '/' && *p != '\n'; p++); if (*p == '=') { /* eliminate initialization */ for (q = p ; *q && *q != ';' ; q++); if (*q == '\0') |