make QSH debug compile for C89

This commit is contained in:
Jacob Barthelmeh
2016-03-08 15:20:45 -07:00
parent ceafb25f49
commit 49b547db08

View File

@ -3058,6 +3058,7 @@ int MakeMasterSecret(WOLFSSL* ssl)
/* show secret SerSi and CliSi */
#ifdef SHOW_SECRETS
{
word32 j;
printf("QSH generated secret material\n");
printf("SerSi : ");
@ -3070,6 +3071,7 @@ int MakeMasterSecret(WOLFSSL* ssl)
printf("%02x", ssl->QSH_secret->CliSi->buffer[j]);
}
printf("\n");
}
#endif
}
#endif