diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/gnutls.c | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/src/gnutls.c b/src/gnutls.c index 51536b14632..a7ef59ab919 100644 --- a/src/gnutls.c +++ b/src/gnutls.c | |||
| @@ -1493,20 +1493,18 @@ returned as the :certificate entry. */) | |||
| 1493 | 1493 | ||
| 1494 | /* Compression name. */ | 1494 | /* Compression name. */ |
| 1495 | #ifdef HAVE_GNUTLS_COMPRESSION_GET | 1495 | #ifdef HAVE_GNUTLS_COMPRESSION_GET |
| 1496 | Lisp_Object compression = build_string (gnutls_compression_get_name | 1496 | result = nconc2 |
| 1497 | (gnutls_compression_get (state))); | 1497 | (result, list2 (intern (":compression"), |
| 1498 | #else | 1498 | build_string (gnutls_compression_get_name |
| 1499 | Lisp_Object compression = build_string ("NULL"); | 1499 | (gnutls_compression_get (state))))); |
| 1500 | #endif | 1500 | #endif |
| 1501 | result = nconc2 (result, list2 (intern (":compression"), compression)); | ||
| 1502 | 1501 | ||
| 1503 | /* Encrypt-then-MAC. */ | 1502 | /* Encrypt-then-MAC. */ |
| 1504 | Lisp_Object etm_status = Qnil; | ||
| 1505 | #ifdef HAVE_GNUTLS_ETM_STATUS | 1503 | #ifdef HAVE_GNUTLS_ETM_STATUS |
| 1506 | if (gnutls_session_etm_status (state)) | 1504 | result = nconc2 |
| 1507 | etm_status = Qt; | 1505 | (result, list2 (intern (":encrypt-then-mac"), |
| 1506 | gnutls_session_etm_status (state) ? Qt : Qnil)); | ||
| 1508 | #endif | 1507 | #endif |
| 1509 | result = nconc2 (result, list2 (intern (":encrypt-then-mac"), etm_status)); | ||
| 1510 | 1508 | ||
| 1511 | /* Renegotiation Indication */ | 1509 | /* Renegotiation Indication */ |
| 1512 | result = nconc2 | 1510 | result = nconc2 |