From b8ab9277ff1fe5a1dca5fe3b4f08cc4dcb3c5178 Mon Sep 17 00:00:00 2001 From: pst Date: Sun, 6 Nov 1994 06:27:04 +0000 Subject: 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. :-( :-( :-( --- bin/sh/mkinit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin') 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') -- cgit v1.1