added missing break in case statement

This commit is contained in:
Andreas Steffen 2008-05-19 20:10:26 +00:00
parent da1bc5e860
commit 367cc86f4a
1 changed files with 3 additions and 1 deletions

View File

@ -643,13 +643,15 @@ static bool parse_OCSPResponse(private_x509_ocsp_response_t *this)
case OID_BASIC:
success = parse_basicOCSPResponse(this, object,
parser->get_level(parser)+1);
break;
default:
DBG1(" ocsp response type %#B not supported", &object);
goto end;
}
break;
}
}
success = parser->success(parser);
success &= parser->success(parser);
end:
parser->destroy(parser);