diff options
author | Simon Josefsson <simon@josefsson.org> | 2007-08-27 16:36:32 +0200 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2007-08-27 16:36:32 +0200 |
commit | 629cec1940822914c704fc2baf80dfb175ef3e3d (patch) | |
tree | fde378285fba8dd4003bebe6fb5ddf102dade657 /src | |
parent | 1ec9138fe0c5a09e8fb93c35fac5d04d85f7dcf2 (diff) | |
download | gnutls-629cec1940822914c704fc2baf80dfb175ef3e3d.tar.gz |
Handle GNUTLS_CRD_IA in print_info().
Diffstat (limited to 'src')
-rw-r--r-- | src/common.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common.c b/src/common.c index 70adb244b9..cfef402c39 100644 --- a/src/common.c +++ b/src/common.c @@ -530,6 +530,9 @@ print_info (gnutls_session_t session, const char *hostname) } break; #endif + case GNUTLS_CRD_IA: + printf ("- TLS/IA authentication\n"); + break; case GNUTLS_CRD_CERTIFICATE: { char dns[256]; |