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