aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2018-06-24 15:40:43 +0200
committerLars Ingebrigtsen2018-06-24 15:40:43 +0200
commiteaa054a94b786ce7dc4169c9b14893f50335f657 (patch)
treed98aa75129b11a31f9e21fddb9235ed50148f6dd
parent6584bc6720fce6a830ab18538f89acc80da597f1 (diff)
downloademacs-eaa054a94b786ce7dc4169c9b14893f50335f657.tar.gz
emacs-eaa054a94b786ce7dc4169c9b14893f50335f657.zip
Fix reverse test in previous check-in
* lisp/net/nsm.el (nsm-check-protocol): Fix reverse test in previous check-in.
-rw-r--r--lisp/net/nsm.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/net/nsm.el b/lisp/net/nsm.el
index 8f09e8dfa91..97bfc7d62f1 100644
--- a/lisp/net/nsm.el
+++ b/lisp/net/nsm.el
@@ -202,8 +202,8 @@ HOST PORT STATUS OPTIONAL-PARAMETER.")
202 ;; Skip the check if the user has already said that this 202 ;; Skip the check if the user has already said that this
203 ;; host is OK for this type of "error". 203 ;; host is OK for this type of "error".
204 when (and (not (memq type (plist-get settings :conditions))) 204 when (and (not (memq type (plist-get settings :conditions)))
205 (< (nsm-level network-security-level) 205 (>= (nsm-level network-security-level)
206 (nsm-level (cadr check)))) 206 (nsm-level (cadr check))))
207 do (let ((result 207 do (let ((result
208 (funcall (intern (format "nsm-protocol-check--%s" 208 (funcall (intern (format "nsm-protocol-check--%s"
209 (car check)) 209 (car check))