From 17c1065e6f65d74b284f7c64fb32fd400604dcec Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Fri, 26 Dec 2014 15:07:56 -0800 Subject: [PATCH] Bug 1115761, Part 4: Add "fall through" comment, r=jcj --HG-- extra : rebase_source : 1e40d7d7d85c1a02eb6195ecee1038ea40a6a9ab --- security/pkix/lib/pkixnss.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/security/pkix/lib/pkixnss.cpp b/security/pkix/lib/pkixnss.cpp index 9ee2122a843..6c38d422887 100644 --- a/security/pkix/lib/pkixnss.cpp +++ b/security/pkix/lib/pkixnss.cpp @@ -125,7 +125,7 @@ VerifySignedDataNSS(const SignedDataWithSignature& sd, pubKeyAlg = SEC_OID_PKCS1_RSA_ENCRYPTION; digestAlg = SEC_OID_SHA1; break; - case SignatureAlgorithm::unsupported_algorithm: + case SignatureAlgorithm::unsupported_algorithm: // fall through default: return NotReached("unknown signature algorithm", Result::ERROR_CERT_SIGNATURE_ALGORITHM_DISABLED);