diff options
Diffstat (limited to 'src/util/crypto_helper_rsa.c')
-rw-r--r-- | src/util/crypto_helper_rsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/crypto_helper_rsa.c b/src/util/crypto_helper_rsa.c index 088aae9f..f9c4d60f 100644 --- a/src/util/crypto_helper_rsa.c +++ b/src/util/crypto_helper_rsa.c @@ -298,8 +298,8 @@ TALER_CRYPTO_helper_rsa_poll (struct TALER_CRYPTO_RsaDenominationHelper *dh) ssize_t ret; ret = recv (dh->sock, - buf, - sizeof (buf), + buf + off, + sizeof (buf) - off, (dh->synced && (0 == off)) ? MSG_DONTWAIT : 0); |