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]

[Patch] Command line option to prevent MD5 verification


Index: download.cc
===================================================================
RCS file: /home/max/cvsmirror/cygwin-apps-cvs/setup/download.cc,v
retrieving revision 2.36
diff -u -p -u -p -r2.36 download.cc
--- download.cc 9 Mar 2003 01:28:52 -0000 2.36
+++ download.cc 6 Apr 2003 22:33:50 -0000
@@ -53,15 +53,18 @@ static const char *cvsid =

 #include "Exception.h"

+#include "getopt++/BoolOption.h"
+
 using namespace std;

 extern ThreeBarProgressPage Progress;

+static BoolOption NoMD5Option (false, '5', "no-md5", "Suppress MD5 checksum
verification");

 bool
 validateCachedPackage (String const &fullname, packagesource & pkgsource)
 {
-  if (pkgsource.md5.isSet())
+  if (pkgsource.md5.isSet() && !NoMD5Option)
     {
       // check the MD5 sum of the cached file here
       io_stream *thefile = io_stream::open (fullname, "rb");


Patch for setup-200303, as mentioned yesterday.



Max.


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