From 2c5f161d7b82ec12968eec273a975141c345d49f Mon Sep 17 00:00:00 2001 From: Steve Pinkham Date: Tue, 9 Aug 2011 15:58:54 -0400 Subject: [PATCH] 1.90b: Minor fix to pivots.txt --- ChangeLog | 5 +++++ Makefile | 2 +- report.c | 6 +++--- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9fbecd1..4a98981 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Version 1.90b: +-------------- + + - Minor fix to pivots.txt. + Version 1.89b: -------------- diff --git a/Makefile b/Makefile index bbe9cd7..872ab4a 100644 --- a/Makefile +++ b/Makefile @@ -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 \ diff --git a/report.c b/report.c index 56eeba0..9b86988 100644 --- a/report.c +++ b/report.c @@ -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)