summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apt-pkg/pkgcachegen.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/pkgcachegen.h b/apt-pkg/pkgcachegen.h
index d83ea6a25..d8d1e303a 100644
--- a/apt-pkg/pkgcachegen.h
+++ b/apt-pkg/pkgcachegen.h
@@ -67,7 +67,7 @@ class APT_HIDDEN pkgCacheGenerator /*{{{*/
uint32_t Hash = 5381;
const char * const end = that.data() + that.size;
for (const char *I = that.data(); I != end; ++I)
- Hash = 33 * Hash + tolower_ascii((signed char)*I);
+ Hash = 33 * Hash + *I;
return Hash;
}
};