Changeset 07889ab in mod_gnutls
- Timestamp:
- Nov 16, 2013, 2:46:50 AM (9 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, master, proxy-ticket, upstream
- Children:
- 5c0d491
- Parents:
- e3cbda4
- git-author:
- Daniel Kahn Gillmor <dkg@…> (01/30/13 06:29:49)
- git-committer:
- Daniel Kahn Gillmor <dkg@…> (11/16/13 02:46:50)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_hooks.c
re3cbda4 r07889ab 22 22 #include "ap_mpm.h" 23 23 24 #ifdef ENABLE_MSVA 25 #include <msv/msv.h> 26 #endif 24 27 25 28 #if !USING_2_1_RECENT … … 58 61 #define _gnutls_log(...) 59 62 #endif 63 64 static const char* mgs_readable_cvm(mgs_client_verification_method_e m) { 65 switch(m) { 66 case mgs_cvm_unset: 67 return "unset"; 68 case mgs_cvm_cartel: 69 return "cartel"; 70 case mgs_cvm_msva: 71 return "msva"; 72 } 73 return "unknown"; 74 } 60 75 61 76 /* Pre-Configuration HOOK: Runs First */ … … 1138 1153 } 1139 1154 } 1140 } else if (gnutls_certificate_type_get(ctxt->session) == 1141 GNUTLS_CRT_OPENPGP) { 1155 } else if (gnutls_certificate_type_get(ctxt->session) == GNUTLS_CRT_OPENPGP) { 1142 1156 if (cert_list_size > 1) { 1143 1157 ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r,
Note: See TracChangeset
for help on using the changeset viewer.