summaryrefslogtreecommitdiff
path: root/extra/scripts/unifdef.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2014-01-07 17:17:52 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2014-01-07 17:17:52 +0100
commitc71f8bc18e33da575c2f637a4dfa5e6bf120cd3c (patch)
tree0ffb49d74d80dd05b771712c943c291decb765d3 /extra/scripts/unifdef.c
parentc7c5cfdbe803ff0e77f8cded764361ae0803b710 (diff)
buildsys: fixup unifdef state in skiphash
attempt to fix unifdef swallowing -f defundefile lines Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'extra/scripts/unifdef.c')
-rw-r--r--extra/scripts/unifdef.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/extra/scripts/unifdef.c b/extra/scripts/unifdef.c
index b159df0a6..a65355366 100644
--- a/extra/scripts/unifdef.c
+++ b/extra/scripts/unifdef.c
@@ -1098,7 +1098,7 @@ skiphash(void)
const char *cp;
linenum++;
- if (fgets(tline, MAXLINE, input) == NULL) {
+ if (linestate == LS_START && fgets(tline, MAXLINE, input) == NULL) {
if (ferror(input))
err(2, "can't read %s", filename);
else
@@ -1458,9 +1458,7 @@ static bool
defundef(void)
{
const char *cp, *kw, *sym, *val, *end;
- Comment_state wascomment;
- wascomment = incomment;
cp = skiphash();
if (cp == NULL)
return (false);