about summary refs log tree commit diff
path: root/src/libutil
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2008-08-25T13·32+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2008-08-25T13·32+0000
commit49829da8b450a1e869168428171334e6d9d0eb45 (patch)
treef7643954d795e798491733f3cca3bff6dbafd96e /src/libutil
parentb428adc267f23441be2f801239641aaf8419e4ba (diff)
* Doh.
Diffstat (limited to 'src/libutil')
-rw-r--r--src/libutil/hash.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libutil/hash.cc b/src/libutil/hash.cc
index 372826f31d..70604a50a3 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;
 }