X-Git-Url: https://git.tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fsptps_speed.c;h=ef97be7e163afd1b75af97e85ee0686ca7ae2d00;hb=3a316823b971396a428f020f401b9fe41252d98d;hp=bde3d697ac9e9fc397d0cab6738394a3fcfb366f;hpb=5822f817aa802c2c5a83e9d99a8ae78cb822799b;p=tinc diff --git a/src/sptps_speed.c b/src/sptps_speed.c index bde3d697..ef97be7e 100644 --- a/src/sptps_speed.c +++ b/src/sptps_speed.c @@ -49,7 +49,7 @@ static bool receive_record(void *handle, uint8_t type, const void *data, uint16_ static void receive_data(sptps_t *sptps) { char buf[4096], *bufp = buf; int fd = *(int *)sptps->handle; - size_t len = recv(fd, buf, sizeof buf, 0); + size_t len = recv(fd, buf, sizeof(buf), 0); while(len) { size_t done = sptps_receive_data(sptps, bufp, len); if(!done) @@ -89,9 +89,9 @@ int main(int argc, char *argv[]) { crypto_init(); - randomize(buf1, sizeof buf1); - randomize(buf2, sizeof buf2); - randomize(buf3, sizeof buf3); + randomize(buf1, sizeof(buf1)); + randomize(buf2, sizeof(buf2)); + randomize(buf3, sizeof(buf3)); // Key generation