X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fed25519%2Fecdh.c;h=844b0fcc02b1ba1c86167ebde382e53ea8834b67;hb=a5a8005b2d89712e124ab7295165a3e229abdad5;hp=f9a0ff06bdf69da097fccdf28f515a3343d773ca;hpb=9415f4b08fb2ca9ae933edd0bf8b096db195ebae;p=meshlink diff --git a/src/ed25519/ecdh.c b/src/ed25519/ecdh.c index f9a0ff06..844b0fcc 100644 --- a/src/ed25519/ecdh.c +++ b/src/ed25519/ecdh.c @@ -1,6 +1,6 @@ /* ecdh.c -- Diffie-Hellman key exchange handling - Copyright (C) 2011-2013 Guus Sliepen + Copyright (C) 2014 Guus Sliepen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -31,7 +31,7 @@ typedef struct ecdh_t { #include "../xalloc.h" ecdh_t *ecdh_generate_public(void *pubkey) { - ecdh_t *ecdh = xzalloc(sizeof *ecdh); + ecdh_t *ecdh = xzalloc(sizeof * ecdh); uint8_t seed[32]; randomize(seed, sizeof seed);