From 9deb847f9eb0c7ed1ac2211a10e5eb28799680fe Mon Sep 17 00:00:00 2001 From: Michael Vrable Date: Thu, 21 Oct 2010 14:28:56 -0700 Subject: [PATCH] Remove debugging messages when decrypting cloud log segments. --- bluesky/cloudlog.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bluesky/cloudlog.c b/bluesky/cloudlog.c index 116195c..e868d99 100644 --- a/bluesky/cloudlog.c +++ b/bluesky/cloudlog.c @@ -533,8 +533,7 @@ void bluesky_cloudlog_decrypt(char *segment, size_t len, BlueSkyCryptKeys *keys) if (item_size > remaining_size) break; if (bluesky_crypt_block_decrypt(data, item_size, keys)) { - g_print("Decrypted valid cloud log item at offset %zd\n", - data - segment); + /* TODO: Mark block as valid. */ } data += item_size; -- 2.20.1