From eb6b8f89bbdfb9f8f34398d94ddd6f11c031fe5d Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Tue, 6 May 2003 03:48:17 +0000 Subject: [PATCH] - Fixed ripemd-160 vs ripemd160 confusion, reported by thelight (#0000949). --- Changes | 1 + src/auth.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Changes b/Changes index 16d43d59e..9e9d28ba6 100644 --- a/Changes +++ b/Changes @@ -2130,3 +2130,4 @@ seen. gmtime warning still there same flag, new functions are VersionflagAdd and VersionflagDel they replace flag_add and flag_del - Fixed a local /kill bug during connection phase, reported by Gilou (#0000952). +- Fixed ripemd-160 vs ripemd160 confusion, reported by thelight (#0000949). diff --git a/src/auth.c b/src/auth.c index cd8d11124..32fc73ece 100644 --- a/src/auth.c +++ b/src/auth.c @@ -57,6 +57,8 @@ anAuthStruct AuthTypes[] = { #endif #ifdef AUTHENABLE_RIPEMD160 {"ripemd160", AUTHTYPE_RIPEMD160}, + /* sure, this is ugly, but it's our fault. -- Syzop */ + {"ripemd-160", AUTHTYPE_RIPEMD160}, #endif {NULL, 0} };