From beda1f54d9ffabd557acd425b64a44b0dfa80313 Mon Sep 17 00:00:00 2001 From: Brian Tully Date: Tue, 12 Apr 2016 17:58:51 -0400 Subject: [PATCH] Fix for ZNC 1.6.x compatibility --- znc/colloquy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/znc/colloquy.cpp b/znc/colloquy.cpp index 7387695..412390f 100644 --- a/znc/colloquy.cpp +++ b/znc/colloquy.cpp @@ -775,7 +775,7 @@ class CColloquyMod : public CModule { } bool bRet = true; - vector& vpClients = GetNetwork()->GetClients(); + const vector& vpClients = GetNetwork()->GetClients(); // Cycle through all of the cached devices for (map::iterator it = m_mspDevices.begin(); it != m_mspDevices.end(); it++) {