diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-07-10 12:17:55 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-07-10 12:17:55 +0200 |
commit | acccaa39641500b8a691db4136e6571102a438ed (patch) | |
tree | 5faed16f0fc7ac11566d6df19561abd3c3ad8c43 /include/inspsocket.h | |
parent | 8186e0b091a4f487448dcfab7144217a85870d4c (diff) |
Remove current time parameter of the Timer constructor
Diffstat (limited to 'include/inspsocket.h')
-rw-r--r-- | include/inspsocket.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/inspsocket.h b/include/inspsocket.h index 720489b77..1bcfbea09 100644 --- a/include/inspsocket.h +++ b/include/inspsocket.h @@ -90,7 +90,7 @@ class CoreExport SocketTimeout : public Timer * @param secs_from_now Seconds from now to time out * @param now The current time */ - SocketTimeout(int fd, BufferedSocket* thesock, long secs_from_now, time_t now) : Timer(secs_from_now, now), sock(thesock), sfd(fd) { } + SocketTimeout(int fd, BufferedSocket* thesock, long secs_from_now) : Timer(secs_from_now), sock(thesock), sfd(fd) { } /** Handle tick event */ |