summaryrefslogtreecommitdiff
path: root/src/rexmpp_digest.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rexmpp_digest.c')
-rw-r--r--src/rexmpp_digest.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/rexmpp_digest.c b/src/rexmpp_digest.c
index e123636..c1dd436 100644
--- a/src/rexmpp_digest.c
+++ b/src/rexmpp_digest.c
@@ -87,7 +87,6 @@ int rexmpp_digest_init (rexmpp_digest_t *ctx, rexmpp_digest_algorithm algo) {
int rexmpp_digest_update (rexmpp_digest_t *ctx, const void *in, size_t len) {
#if defined(HAVE_GCRYPT)
- printf("wirte: %s %lu\n", (const char*)in, len);
gcry_md_write(*ctx, in, len);
#elif defined(HAVE_NETTLE)
ctx->nh->update(ctx->nh_ctx, len, in);