diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2017-02-02 08:06:18 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2017-02-02 08:06:18 +0000 |
commit | 6cd2c4955d814f96d55cbcd2db9c25b670fd415d (patch) | |
tree | ad88c6718c4fdda2db8f1f55d52efaecaafade37 | |
parent | 13a37b6b6550495cf976e063bc97799b8cda7a0a (diff) |
supported the location of SSL certificates on OpenBSD (#222).
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3526 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | libsylph/ssl.c | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,10 @@ 2017-02-02 + * libsylph/ssl.c: supported the location of SSL certificates on + OpenBSD (thanks to Amit Kulkarni) (#222). + +2017-02-02 + * libsylph/utils.c: execute_open_file(): unix: implemented using xdg-open. src/mainwindow.c: added the following menus: diff --git a/libsylph/ssl.c b/libsylph/ssl.c index 6ab2fba2..84139250 100644 --- a/libsylph/ssl.c +++ b/libsylph/ssl.c @@ -59,6 +59,7 @@ static gchar *find_certs_file(const gchar *certs_dir) LOOK_FOR("ca-bundle.crt"); LOOK_FOR("ca-root.crt"); LOOK_FOR("certs.crt"); + LOOK_FOR("cert.pem"); } #undef LOOK_FOR |