1.90b: Minor fix to pivots.txt

This commit is contained in:
Steve Pinkham 2011-08-09 15:58:54 -04:00
parent 3e0d5cbd10
commit 2c5f161d7b
3 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
Version 1.90b:
--------------
- Minor fix to pivots.txt.
Version 1.89b:
--------------

View File

@ -20,7 +20,7 @@
#
PROGNAME = skipfish
VERSION = 1.89b
VERSION = 1.90b
OBJFILES = http_client.c database.c crawler.c analysis.c report.c
INCFILES = alloc-inl.h string-inl.h debug.h types.h http_client.h \

View File

@ -779,9 +779,9 @@ static void save_pivots(FILE* f, struct pivot_desc* cur) {
}
switch (cur->linked) {
case 0: fprintf(f, "linked=no"); break;
case 1: fprintf(f, "linked=maybe"); break;
default: fprintf(f, "linked=yes");
case 0: fprintf(f, "linked=no "); break;
case 1: fprintf(f, "linked=maybe "); break;
default: fprintf(f, "linked=yes ");
}
if (cur->res)