]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - modules/m_away.c
Argh, wrong replace caused by MS VS 2005 interface.
[irc/rqf/shadowircd.git] / modules / m_away.c
index e6ff385c94421c4dc8bfda51e2db1f9e47eb5829..d95d0f0a7213d3c2f36e45542372b0671dd53854 100644 (file)
@@ -91,7 +91,7 @@ m_away(struct Client *client_p, struct Client *source_p, int parc, const char *p
                                      ":%s AWAY", use_id(source_p));
                        sendto_server(client_p, NULL, NOCAPS, CAP_TS6, 
                                      ":%s AWAY", source_p->name);
-                       MyFree(away);
+                       rb_free(away);
                        source_p->user->away = NULL;
                }
                if(MyConnect(source_p))
@@ -127,7 +127,7 @@ m_away(struct Client *client_p, struct Client *source_p, int parc, const char *p
                              ":%s AWAY :%s", source_p->name, awy2);
        }
        else
-               MyFree(away);
+               rb_free(away);
 
        DupString(away, awy2);