mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 10:47:28 +02:00
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)
|
||||
{
|
||||
memcpy(buf, data+r_offset, len);
|
||||
XMEMCPY(buf, data+r_offset, len);
|
||||
r_offset += 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;
|
||||
}
|
||||
|
||||
@ -36587,7 +36587,6 @@ static void set_plain(unsigned char *plain, int rec)
|
||||
for(j=0; j<BLOCKSZ; j++)
|
||||
*p++ = (i % 16);
|
||||
}
|
||||
//binary_dump(plain, rec);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user