]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - modules/m_restart.c
Removal of ancient SVN ID's part one
[irc/rqf/shadowircd.git] / modules / m_restart.c
index 5ff84f9bd811af4e98f6ea9a4e859e6057eec9ec..36dbf9c56832ec3d9b3f66a0c5715d14451ed39d 100644 (file)
@@ -21,7 +21,6 @@
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
  *  USA
  *
- *  $Id: m_restart.c 3161 2007-01-25 07:23:01Z nenolod $
  */
 
 #include "stdinc.h"
@@ -111,11 +110,12 @@ do_restart(struct Client *source_p, const char *servername)
        rb_dlink_node *ptr;
        struct Client *target_p;
 
+       /* this makes sure both servernames match otherwise weirdness will occur */
        if(irccmp(servername, me.name))
        {
                sendto_one_notice(source_p, ":Mismatch on /restart %s", me.name);
                return 0;
-        }
+       }
 
        RB_DLINK_FOREACH(ptr, lclient_list.head)
        {