summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Pennock <pdp@exim.org>2012-05-23 01:20:09 -0400
committerPhil Pennock <pdp@exim.org>2012-05-23 01:20:09 -0400
commit60788a1cfdd64787ed6513986af2335b51d89766 (patch)
treee867ee76bba09d9db9537c280820dfc7eab32c8e
parentc2b063d407d37f6d813cdc4bc9d6a346f071a471 (diff)
downloadexim4-60788a1cfdd64787ed6513986af2335b51d89766.tar.gz
expanded comment, noting size types and API issue
-rw-r--r--src/src/tls-gnu.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/src/tls-gnu.c b/src/src/tls-gnu.c
index 0ac72ad25..b2659d7a7 100644
--- a/src/src/tls-gnu.c
+++ b/src/src/tls-gnu.c
@@ -512,7 +512,11 @@ if (rc < 0)
m.data = malloc(m.size);
if (m.data == NULL)
return tls_error(US"memory allocation failed", strerror(errno), NULL);
- /* this will return a size 1 less than the allocation size above */
+ /* this will return a size 1 less than the allocation size above; I
+ originally used sz so as to avoid type compatibility errors, as gnutls_datum
+ uses "unsigned int" for the size field, but this call takes separate data
+ and size fields, with the latter being a size_t*. For now, we live with
+ the error as being safer than throwing away type information. */
rc = gnutls_dh_params_export_pkcs3(dh_server_params, GNUTLS_X509_FMT_PEM,
m.data, &m.size);
if (rc != GNUTLS_E_SUCCESS)