diff -Naur jungledisk-source-orig/JungleDiskCmd.cs jungledisk-source-patched/JungleDiskCmd.cs
--- jungledisk-source-orig/JungleDiskCmd.cs	2007-10-03 16:51:49.000000000 -0600
+++ jungledisk-source-patched/JungleDiskCmd.cs	2007-10-03 16:26:57.000000000 -0600
@@ -23,11 +23,11 @@
 using System.Security.Cryptography;
 using System.IO;
 using System.Net;
-
+using System.Security.Cryptography.X509Certificates;
 
 namespace jdcmd
 {
-	class JungleDiskCmd
+  class JungleDiskCmd : ICertificatePolicy
 	{
 		static string accessKey;
 		static string secretKey;
@@ -46,8 +46,15 @@
 			Console.WriteLine(" getfile <bucket> <path> <localfile.ext> - Retrieves the file at the specified bucket and path");
 		}
 
+                public bool CheckValidationResult (ServicePoint sp, 
+                                                   X509Certificate certificate, WebRequest request, int error)
+                {
+                  return true;
+                }
+                
 		static void Main(string[] args)
 		{
+                  ServicePointManager.CertificatePolicy = new JungleDiskCmd ();
 			if (args.Length < 3)
 			{
 				PrintUsage();
