Make edbrowse use the system CA certificates list.

---
 src/main.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: edbrowse/src/main.c
===================================================================
--- edbrowse.orig/src/main.c
+++ edbrowse/src/main.c
@@ -5,6 +5,7 @@
 #include <pthread.h>
 #include <signal.h>
 
+#include <string.h>
 // Define the globals that are declared in eb.h.
 // See eb.h for additional comments.
 // Let's start with the current (foreground) edbrowse window and frame.
@@ -480,6 +481,9 @@ int main(int argc, char **argv)
 	char *firstFile = 0;
 	int firstFilePosition = 0, k;
 	static char agent0[64] = "edbrowse/";
+	// Debian patch: set default SSL certificate store. This still allows the
+	// user to override the default by a config variable.
+    sslCerts = strdup("/etc/ssl/certs/ca-certificates.crt");
 
 // In case this is being piped over to a synthesizer, or whatever.
 	if (fileTypeByHandle(fileno(stdout)) != 'f')
