summaryrefslogtreecommitdiffstats
path: root/macosx/Sparkle.disable.security.patch
blob: 7d3d2d038941bfa6aa6b6fe6f0334fb201f533ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- SUBasicUpdateDriver.m.orig	2009-06-18 16:23:17.000000000 -0400
+++ SUBasicUpdateDriver.m	2009-06-18 16:23:53.000000000 -0400
@@ -158,6 +158,7 @@
 
 - (void)downloadDidFinish:(NSURLDownload *)d
 {
+#if 0
 	// New in Sparkle 1.5: we're now checking signatures on all non-secure downloads, where "secure" is defined as both the appcast and the download being transmitted over SSL.
 	NSURL *downloadURL = [[d request] URL];
 	if (![[downloadURL scheme] isEqualToString:@"https"] || ![[appcastURL scheme] isEqualToString:@"https"] || [host publicDSAKey])
@@ -168,6 +169,7 @@
 			return;
 		}
 	}
+#endif
 	
 	[self extractUpdate];
 }