From 8366b461e1117e9fed717bcbc3f8e1001247a314 Mon Sep 17 00:00:00 2001 From: psychon Date: Fri, 7 Aug 2009 19:17:04 +0000 Subject: [PATCH] Fix some comment that I recently committed Thanks to KiNgMaR. git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1590 726aef4b-f618-498e-8847-2d620e286838 --- Socket.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Socket.cpp b/Socket.cpp index 7459877b..471f9009 100644 --- a/Socket.cpp +++ b/Socket.cpp @@ -66,7 +66,7 @@ int CSockManager::Select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *ex int ret; fd_set tmp; - // Csocket sometimes can use NULL for exceptfds and c-ares doesn't like NULLs + // Csocket sometimes can use NULL for writefds and c-ares doesn't like NULLs here if (writefds == NULL) { writefds = &tmp;