aboutsummaryrefslogtreecommitdiff
path: root/src/util/crypto_mpi.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/crypto_mpi.c')
-rw-r--r--src/util/crypto_mpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/crypto_mpi.c b/src/util/crypto_mpi.c
index 15ce57586..668d5e602 100644
--- a/src/util/crypto_mpi.c
+++ b/src/util/crypto_mpi.c
@@ -90,7 +90,7 @@ GNUNET_CRYPTO_mpi_print_unsigned (void *buf,
90 rsize = (nbits+7)/8; 90 rsize = (nbits+7)/8;
91 if (rsize > size) 91 if (rsize > size)
92 rsize = size; 92 rsize = size;
93 memcpy (buf, p, rsize); 93 GNUNET_memcpy (buf, p, rsize);
94 if (rsize < size) 94 if (rsize < size)
95 memset (buf+rsize, 0, size - rsize); 95 memset (buf+rsize, 0, size - rsize);
96 } 96 }