diff options
author | peter <peter@FreeBSD.org> | 2000-06-14 07:43:56 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-06-14 07:43:56 +0000 |
commit | 4699eff3b4d3a3d665929cc439c99fcb49badf56 (patch) | |
tree | 13ffacde24b62ac349a28e3d3e73b427a0af2c72 /usr.sbin/config | |
parent | 9ea08b1bb37fd6e39f53d0aa5e4894607e6f40ba (diff) | |
download | FreeBSD-src-4699eff3b4d3a3d665929cc439c99fcb49badf56.zip FreeBSD-src-4699eff3b4d3a3d665929cc439c99fcb49badf56.tar.gz |
Argh! I broke the static hints parser at the last minute on freefall when
I added the $FreeBSD$ (commented) line.
Fix:
1: s/break/continue/
2: will somebody please shoot me! :-]
Diffstat (limited to 'usr.sbin/config')
-rw-r--r-- | usr.sbin/config/mkmakefile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/config/mkmakefile.c b/usr.sbin/config/mkmakefile.c index f0107ed..2823780 100644 --- a/usr.sbin/config/mkmakefile.c +++ b/usr.sbin/config/mkmakefile.c @@ -253,7 +253,7 @@ makefile(void) } /* anything left? */ if (*line == '\0') - break; + continue; fprintf(ofp, "\"%s\\0\"\n", line); } } |