From 809f26783f3db9285bada732d82cf61bb00a63d9 Mon Sep 17 00:00:00 2001 From: Andy McFadden Date: Thu, 26 Sep 2002 22:12:18 +0000 Subject: [PATCH] Added "analyzing" state to progress updater (used by SQueeze compression). Changed the version string to "1.1.0d1". --- nulib2/ArcUtils.c | 5 ++++- nulib2/ChangeLog.txt | 6 ++++++ nulib2/State.c | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/nulib2/ArcUtils.c b/nulib2/ArcUtils.c index b85a78e..0bf9ac0 100644 --- a/nulib2/ArcUtils.c +++ b/nulib2/ArcUtils.c @@ -317,6 +317,9 @@ ProgressUpdater(NuArchive* pArchive, void* vProgress) actionStr = "adding "; showName = true; break; + case kNuProgressAnalyzing: + actionStr = "analyzing "; + break; case kNuProgressCompressing: actionStr = "compressing"; break; @@ -771,7 +774,7 @@ OpenArchiveReadOnly(NulibState* pState) if (IsFilenameStdin(NState_GetArchiveFilename(pState))) { err = NuStreamOpenRO(stdin, &pArchive); if (err != kNuErrNone) { - ReportError(err, "unable to open create stdin archive"); + ReportError(err, "unable to open stdin archive"); goto bail; } /* diff --git a/nulib2/ChangeLog.txt b/nulib2/ChangeLog.txt index 81f0249..079702d 100644 --- a/nulib2/ChangeLog.txt +++ b/nulib2/ChangeLog.txt @@ -1,3 +1,9 @@ +2002/09/26 fadden + - progress updater now shows "analyzing" for scan pass of SQ + +2002/09/23 fadden + - ran the code through valgrind; found and fixed some minor bugs + 2002/09/20 fadden - pulled the sources out and started fiddling with them again - changed hard tabs to spaces diff --git a/nulib2/State.c b/nulib2/State.c index 432775c..64a296a 100644 --- a/nulib2/State.c +++ b/nulib2/State.c @@ -9,7 +9,7 @@ #include "Nulib2.h" -static const char* gProgramVersion = "1.0.1"; +static const char* gProgramVersion = "1.1.0d1"; /*