From ccc486ca1184962df57e380954747f1593317bb5 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 22 Oct 2019 08:30:01 +0200 Subject: [PATCH] smbd: Mark #else/#endif with the if-#define Signed-off-by: Volker Lendecke Reviewed-by: Martin Schwenke --- source3/smbd/mangle_hash2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/smbd/mangle_hash2.c b/source3/smbd/mangle_hash2.c index ac1f4b0f4fb..d6a365e1ebf 100644 --- a/source3/smbd/mangle_hash2.c +++ b/source3/smbd/mangle_hash2.c @@ -190,7 +190,7 @@ static void init_tables(void) #endif } -#else +#else /* DYNAMIC_MANGLE_TABLES */ /* * These tables were initialized by a single run of the above @@ -270,7 +270,7 @@ static uint8_t base_reverse[256] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; -#endif +#endif /* DYNAMIC_MANGLE_TABLES */ /* hash a string of the specified length. The string does not need to be -- 2.47.3