diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-11 12:18:19 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-11 12:18:19 +0000 |
commit | 5f462cf84e2d28df31df7ba081f9f0822cec9e90 (patch) | |
tree | 3b4b4d7836bf65481c26695a595938675204539d /src/modules | |
parent | 5c328da92fbf7a7e8b26ded2df085d3cf49f67f5 (diff) |
Added getrlimit/setrlimit to set process limits to allow a core dump
Fixed m_setidle to only allow you to set a positive integer as the idle time
Removed some logging from wildcard.cpp
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1041 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_setidle.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/modules/m_setidle.cpp b/src/modules/m_setidle.cpp index c4d812d00..658e6ad1f 100644 --- a/src/modules/m_setidle.cpp +++ b/src/modules/m_setidle.cpp @@ -26,6 +26,11 @@ Server *Srv = NULL; void handle_setidle(char **parameters, int pcnt, userrec *user) { + if (atoi(parameters[0]) < 1) + { + WriteServ(user->fd,"943 %s :Invalid idle time.",user->nick); + return; + } user->idle_lastmsg = time(NULL) - atoi(parameters[0]); // minor tweak - we cant have signon time shorter than our idle time! if (user->signon > user->idle_lastmsg) |