74fc46
diff -up nss/lib/ssl/sslsock.c.1026677_ignore_set_policy nss/lib/ssl/sslsock.c
74fc46
--- nss/lib/ssl/sslsock.c.1026677_ignore_set_policy	2017-01-13 17:10:36.049530395 +0100
74fc46
+++ nss/lib/ssl/sslsock.c	2017-01-13 17:10:36.053530297 +0100
74fc46
@@ -1391,7 +1391,6 @@ SSL_CipherPrefGet(PRFileDesc *fd, PRInt3
74fc46
 SECStatus
74fc46
 NSS_SetDomesticPolicy(void)
74fc46
 {
74fc46
-    SECStatus status = SECSuccess;
74fc46
     const PRUint16 *cipher;
74fc46
     SECStatus rv;
74fc46
     PRUint32 policy;
74fc46
@@ -1403,11 +1402,9 @@ NSS_SetDomesticPolicy(void)
74fc46
     }
74fc46
 
74fc46
     for (cipher = SSL_ImplementedCiphers; *cipher != 0; ++cipher) {
74fc46
-        status = SSL_SetPolicy(*cipher, SSL_ALLOWED);
74fc46
-        if (status != SECSuccess)
74fc46
-            break;
74fc46
+        (void) SSL_SetPolicy(*cipher, SSL_ALLOWED);
74fc46
     }
74fc46
-    return status;
74fc46
+    return SECSuccess;
74fc46
 }
74fc46
 
74fc46
 SECStatus