summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authoryogesh nagarkar <admin@yeshog.com>2014-06-28 00:40:26 +0100
committerDr. Stephen Henson <steve@openssl.org>2014-06-28 00:41:31 +0100
commit00ab230a3fd2c3e50c5c54d13e93d1b6f9985710 (patch)
tree525f73430847a148becffd13ab3a68299a6762da /ssl
parente99980e8fdc15173c8ff93d5c30ea37db8322885 (diff)
Fix compilation with -DSSL_DEBUG -DTLS_DEBUG -DKSSL_DEBUG
PR#3141 (cherry picked from commit d183545d4589f1e7a40190400b8b99ea3d1f7f97)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/t1_enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/t1_enc.c b/ssl/t1_enc.c
index 4874e5f95d..10fc795acd 100644
--- a/ssl/t1_enc.c
+++ b/ssl/t1_enc.c
@@ -1173,7 +1173,7 @@ int tls1_export_keying_material(SSL *s, unsigned char *out, size_t olen,
int rv;
#ifdef KSSL_DEBUG
- printf ("tls1_export_keying_material(%p,%p,%d,%s,%d,%p,%d)\n", s, out, olen, label, llen, p, plen);
+ printf ("tls1_export_keying_material(%p,%p,%d,%s,%d,%p,%d)\n", s, out, olen, label, llen, context, contextlen);
#endif /* KSSL_DEBUG */
buff = OPENSSL_malloc(olen);