From c5f46d3efbafc0030044303a1bf62d943451278b Mon Sep 17 00:00:00 2001 From: thorkill Date: Tue, 10 May 2016 00:37:39 +0200 Subject: [PATCH] Removed backtrace callback --- src/sptps.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/sptps.c b/src/sptps.c index ce3edb70..b5b29b48 100644 --- a/src/sptps.c +++ b/src/sptps.c @@ -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)