Religious cosmetics: Use upper-case for MD5 cookies because it

typographically looks better because the lower-case MD5 cookies looked
too jagged ;)
This commit is contained in:
Ralf S. Engelschall 2001-01-20 14:10:43 +00:00
parent dc87681766
commit 220dc26a96

View File

@ -66,7 +66,7 @@ char* generate_cookie(const char* buffer)
static char* encode_digest_to_ascii(unsigned char digest[16])
{
int i;
static const char hex[] = "0123456789abcdef";
static const char hex[] = "0123456789ABCDEF";
char * buffer;
buffer = xmalloc(33);