diff options
| author | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2010-09-17 15:22:29 +0200 |
|---|---|---|
| committer | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2010-09-17 17:02:40 +0200 |
| commit | 6eeebd0304ddee0a019cfe7383bf731decae34c7 (patch) | |
| tree | 40f23f85dfb7c1f0fc94bf63b98795a902f6b546 | |
| parent | a02645ba3780bc651a9d32adbeacbce80c9937f4 (diff) | |
[SAMLv2] in profile.c fix uncovered enumeration value in switch
| -rw-r--r-- | lasso/saml-2.0/profile.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lasso/saml-2.0/profile.c b/lasso/saml-2.0/profile.c index 1140e63c..4d2edeb5 100644 --- a/lasso/saml-2.0/profile.c +++ b/lasso/saml-2.0/profile.c @@ -711,6 +711,9 @@ lasso_saml20_profile_process_soap_request(LassoProfile *profile, break; case LASSO_PROFILE_SIGNATURE_VERIFY_HINT_IGNORE: break; + case LASSO_PROFILE_SIGNATURE_VERIFY_HINT_LAST: + g_assert_not_reached(); + break; } cleanup: @@ -1621,6 +1624,9 @@ lasso_saml20_profile_check_signature_status(LassoProfile *profile) { break; case LASSO_PROFILE_SIGNATURE_VERIFY_HINT_IGNORE: break; + case LASSO_PROFILE_SIGNATURE_VERIFY_HINT_LAST: + g_assert_not_reached(); + break; } } |
