]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_callerid.cpp
Correct this error message to confuse people less.
[user/henk/code/inspircd.git] / src / modules / m_callerid.cpp
index 34e41cb44e331bdd4f591bc51fea45fa1f171df6..d8e50b280554adb9a255d9a86a8447660731f581 100644 (file)
@@ -239,6 +239,8 @@ public:
 
                        return false;
                }
+
+               user->WriteServ("NOTICE %s :%s is now on your accept list", user->nick.c_str(), whotoadd->nick.c_str());
                return true;
        }
 
@@ -260,6 +262,8 @@ public:
 
                        return false;
                }
+
+               user->WriteServ("NOTICE %s :%s is no longer on your accept list", user->nick.c_str(), whotoremove->nick.c_str());
                dat->accepting.erase(i);
                return true;
        }
@@ -334,7 +338,7 @@ public:
 
                if (i == dat->accepting.end())
                {
-                       time_t now = time(NULL);
+                       time_t now = ServerInstance->Time();
                        /* +g and *not* accepted */
                        user->WriteNumeric(716, "%s %s :is in +g mode (server-side ignore).", user->nick.c_str(), dest->nick.c_str());
                        if (now > (dat->lastnotify + (time_t)notify_cooldown))