]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Don't desync when setting swhois
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Fri, 28 Mar 2008 14:43:49 +0000 (14:43 +0000)
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Fri, 28 Mar 2008 14:43:49 +0000 (14:43 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9198 e03df62e-2008-0410-955e-edbf42e46eb7

src/modules/m_swhois.cpp

index 068dfc34196910675cb42f7dfac857a1a43f82bf..10e001f817908754c2b6ac31252210e1feb66c8d 100644 (file)
@@ -133,6 +133,7 @@ class ModuleSWhois : public Module
                                ServerInstance->SendWhoisLine(user, dest, 320, "%s %s :%s",user->nick,dest->nick,swhois->c_str());
                        }
                }
+
                /* Dont block anything */
                return 0;
        }
@@ -200,13 +201,17 @@ class ModuleSWhois : public Module
                if ((target_type == TYPE_USER) && (extname == "swhois"))
                {
                        User* dest = (User*)target;
-                       // if they dont already have an swhois field, accept the remote server's
+
+                       // if they already have an swhois field, trash it and replace it with the remote one.
                        std::string* text;
-                       if (!dest->GetExt("swhois", text))
+                       if (dest->GetExt("swhois", text))
                        {
-                               std::string* text2 = new std::string(extdata);
-                               dest->Extend("swhois",text2);
+                               user->Shrink("swhois");
+                               delete text;
                        }
+
+                       text2 = new std::string(extdata);
+                       dest->Extend("swhois", text);
                }
        }