From c24a7435b8171db15c719af119e708bfd9b719bc Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Fri, 14 May 2021 14:26:46 +0100 Subject: Fix an off by one error in various bitsets. --- src/modules/m_sethost.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/m_sethost.cpp') diff --git a/src/modules/m_sethost.cpp b/src/modules/m_sethost.cpp index 98067b459..18c964d1b 100644 --- a/src/modules/m_sethost.cpp +++ b/src/modules/m_sethost.cpp @@ -30,7 +30,7 @@ class CommandSethost : public Command { public: - std::bitset hostmap; + std::bitset hostmap; CommandSethost(Module* Creator) : Command(Creator,"SETHOST", 1) -- cgit v1.2.3