Removed backtrace callback

This commit is contained in:
thorkill 2016-05-10 00:37:39 +02:00
parent 75bca2543d
commit c5f46d3efb

View file

@ -145,7 +145,6 @@ bool sptps_send_record(sptps_t *s, uint8_t type, const void *data, uint16_t len)
// Sanity checks: application cannot send data before handshake is finished,
// and only record types 0..127 are allowed.
if(!s->outstate) {
//backtrace_cb(s);
return error(s, EINVAL, "Handshake phase not finished yet %x", s->outstate);
}
if(type >= SPTPS_HANDSHAKE)