<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html lang="en">
<head>
<meta content="text/html; charset=US-ASCII" http-equiv="Content-Type">
<title>
GitLab
</title>


<style>img {
max-width: 100%; height: auto;
}
</style>
</head>
<body>
<div class="content">

<div style="">
<p dir="auto">Sorry for my lack of attention. It looks like <code>gnutls_datum_t</code> is a typedef to a struct, while <code>gnutls_x509_crt_t</code> is a typedef to pointer at the moment. Due to that, <code>const gnutls_datum_t*</code> is a pointer to const data, while <code>const gnutls_x509_crt_t</code> is a const pointer to data. That explains lack of expected warnings (const pointer is just copied as non-const pointer for function argument when needed) and makes this change more trivial (there is no point in marking such pointers as const, it's a copy anyway). Changes to libtasn are not required, as shouldn't be required changes to any other functions since they're not called with provided <code>const gnutls_datum_t*</code>. It should be enough to change <code>gnutls_datum_t * der</code> to <code>const gnutls_datum_t * der</code>.</p>
</div>


</div>
<div class="footer" style="margin-top: 10px;">
<p style="font-size: small; color: #777;">

<br>
Reply to this email directly or <a href="https://gitlab.com/gnutls/gnutls/merge_requests/1000#note_172848217">view it on GitLab</a>.
<br>
You're receiving this email because of your account on gitlab.com.
If you'd like to receive fewer emails, you can
<a href="https://gitlab.com/sent_notifications/6cc22708e3882650a84d24a2502db942/unsubscribe">unsubscribe</a>
from this thread or
adjust your notification settings.
<script type="application/ld+json">{"@context":"http://schema.org","@type":"EmailMessage","action":{"@type":"ViewAction","name":"View Merge request","url":"https://gitlab.com/gnutls/gnutls/merge_requests/1000#note_172848217"}}</script>

</p>
</div>
</body>
</html>