forked from wolfSSL/wolfssl
remove hard tabs and other minor fixes
This commit is contained in:
@ -36566,13 +36566,13 @@ static void init_offset()
|
|||||||
}
|
}
|
||||||
static void get_record(unsigned char *data, unsigned char *buf, int len)
|
static void get_record(unsigned char *data, unsigned char *buf, int len)
|
||||||
{
|
{
|
||||||
memcpy(buf, data+r_offset, len);
|
XMEMCPY(buf, data+r_offset, len);
|
||||||
r_offset += len;
|
r_offset += len;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void set_record(unsigned char *data, unsigned char *buf, int len)
|
static void set_record(unsigned char *data, unsigned char *buf, int len)
|
||||||
{
|
{
|
||||||
memcpy(data+w_offset, buf, len);
|
XMEMCPY(data+w_offset, buf, len);
|
||||||
w_offset += len;
|
w_offset += len;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -36587,7 +36587,6 @@ static void set_plain(unsigned char *plain, int rec)
|
|||||||
for(j=0; j<BLOCKSZ; j++)
|
for(j=0; j<BLOCKSZ; j++)
|
||||||
*p++ = (i % 16);
|
*p++ = (i % 16);
|
||||||
}
|
}
|
||||||
//binary_dump(plain, rec);
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user