+2014-11-25 Teodor Zlatanov <tzz@lifelogs.com>
+
+ * net/nsm.el (nsm-check-tls-connection, nsm-save-host)
+ (nsm-warnings-ok-p): Use `gnutls-peer-status-warning-describe'.
+
2014-11-20 Nicolas Richard <theonewiththeevillook@yahoo.fr>
* emacs-lisp/byte-run.el (function-put): Match argument names to
host port
(if (> (length warnings) 1)
"s" "")
- (mapconcat 'cadr warnings "\n"))))
+ (mapconcat #'gnutls-peer-status-warning-describe
+ warnings
+ "\n"))))
(progn
(delete-process process)
nil)
(nconc saved `(:conditions (:unencrypted))))
((plist-get status :warnings)
(nconc saved
- `(:conditions ,(mapcar 'car (plist-get status :warnings)))))))
+ `(:conditions ,(plist-get status :warnings))))))
(if (eq permanency 'always)
(progn
(nsm-remove-temporary-setting id)
result))
(defun nsm-warnings-ok-p (status settings)
- (let ((not-ok nil)
- (conditions (plist-get settings :conditions)))
- (dolist (warning (plist-get status :warnings))
- (when (memq (car warning) conditions)
- (setq not-ok t)))
- not-ok))
+ (null (cl-intersection
+ (plist-get settings :conditions)
+ (plist-get status :warnings))))
(defun nsm-remove-permanent-setting (id)
(setq nsm-permanent-host-settings