This is the mail archive of the cygwin-apps@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

setup - trivial patch - missing spaces in log


Problem: Log lines like:
For filefile://M:\max\Install\cygwin/release/procps/procps-010801-2.tar.bz2
ini
digest isefd567eab6b24452c2d38b7596fd1724 file digest is
efd567eab6b24452c2d38b7
596fd1724

Fix:

Index: install.cc
===================================================================
RCS file: /home/max/cvsmirror/cygwin-apps-cvs/setup/install.cc,v
retrieving revision 2.53
diff -u -p -r2.53 install.cc
--- install.cc 9 Nov 2002 13:44:53 -0000 2.53
+++ install.cc 31 Jan 2003 19:41:57 -0000
@@ -217,7 +217,7 @@ install_one_source (packagemeta & pkgm,
       md5 tempMD5;
       tempMD5.set (tempdigest);

-      log (LOG_BABBLE, String ("For file") + source.Cached() + " ini digest
is" + source.md5.print() + " file digest is " + tempMD5.print());
+      log (LOG_BABBLE, String ("For file ") + source.Cached() + " ini
digest is " + source.md5.print() + " file digest is " + tempMD5.print());

       if (source.md5 != tempMD5)
    throw new Exception ("__LINE__ __FILE__", (String ("Checksum failure for
") + source.Cached()).cstr_oneuse(), APPERR_CORRUPT_PACKAGE);


OK?


Max.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]