when evaluating conditionals, array iteration number stays the same

CVS patchset: 1861
CVS date: 1997/10/17 03:12:03
This commit is contained in:
ewt 1997-10-17 03:12:03 +00:00
parent 73306a9493
commit e548c70dde
2 changed files with 3 additions and 3 deletions

View File

@ -168,12 +168,12 @@ depend:
(cd $$d; $(MAKE) $@) ;\
done
.PHONY noconfig
.PHONY: noconfig
noconfig:
find . -name "Makefile" -exec rm {} \;
rm -f *gz *rpm config.*
.PHONY archive
.PHONY: archive
archive:
@echo " "
@echo "I hope you checked everything out and made sure it builds"

View File

@ -1649,7 +1649,7 @@ static char * singleSprintf(Header h, struct sprintfToken * token,
for (i = 0; i < condNumFormats; i++) {
thisItem = singleSprintf(h, condFormat + i,
extensions, extCache, i);
extensions, extCache, element);
thisItemLen = strlen(thisItem);
if ((thisItemLen + len) >= alloced) {
alloced = (thisItemLen + len) + 200;