From 9302b8904ceec888739f20deac420ff29588bd1e Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Sat, 28 Feb 2026 04:16:47 +0500 Subject: [PATCH] engine: client: identification: fix a typo --- engine/client/identification.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/identification.c b/engine/client/identification.c index b12b5711..c18db4f3 100644 --- a/engine/client/identification.c +++ b/engine/client/identification.c @@ -657,7 +657,7 @@ void ID_GetMD5ForAddress( char *key, netadr_t adr, size_t size ) } if( bufsize != 0 ) - value = BloomFilter_Process( buf, bufsize ); + value |= BloomFilter_Process( buf, bufsize ); MD5Init( &ctx ); MD5Update( &ctx, (byte *)&value, sizeof( value ));