1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-12-14 10:50:27 +00:00

- Hast wird immer ueber in Kleinbuchstaben gewandelten String berechnet.

This commit is contained in:
Alexander Barton 2002-03-22 00:21:51 +00:00
parent fdf23efef4
commit 0df6a76103

View File

@ -9,7 +9,7 @@
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: hash.c,v 1.2 2002/03/14 15:49:36 alex Exp $ * $Id: hash.c,v 1.3 2002/03/22 00:21:51 alex Exp $
* *
* hash.c: Hash-Werte berechnen * hash.c: Hash-Werte berechnen
*/ */
@ -19,6 +19,11 @@
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
#include <string.h>
#include "defines.h"
#include "log.h"
#include "tool.h"
#include "exp.h" #include "exp.h"
#include "hash.h" #include "hash.h"
@ -30,7 +35,13 @@ LOCAL UINT32 jenkins_hash( register UINT8 *k, register UINT32 length, register U
GLOBAL UINT32 Hash( CHAR *String ) GLOBAL UINT32 Hash( CHAR *String )
{ {
/* Hash-Wert ueber String berechnen */ /* Hash-Wert ueber String berechnen */
return jenkins_hash( String, strlen( String ), 42 );
CHAR buffer[LINE_LEN];
strncpy( buffer, String, LINE_LEN - 1 );
buffer[LINE_LEN - 1] = '\0';
return jenkins_hash( ngt_LowerStr( buffer ), strlen( buffer ), 42 );
} /* Hash */ } /* Hash */