From 49829da8b450a1e869168428171334e6d9d0eb45 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 25 Aug 2008 13:32:27 +0000 Subject: [PATCH] * Doh. --- src/libutil/hash.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libutil/hash.cc b/src/libutil/hash.cc index 372826f31..70604a50a 100644 --- a/src/libutil/hash.cc +++ b/src/libutil/hash.cc @@ -257,7 +257,6 @@ Hash hashString(HashType ht, const string & s) start(ht, ctx); update(ht, ctx, (const unsigned char *) s.c_str(), s.length()); finish(ht, ctx, hash.hash); - //printMsg(lvlError, format("hashString %1% --> %2%:\n%3%\n===========END======") % s.size() % printHash(hash) % s); return hash; }