Remove unused AUTH variable from the buildsystem
[citadel.git] / citadel / modules / netfilter / serv_netfilter.c
index cf5e756a7baae7c8d0a9623191fc281e059e0120..a75576948f99c53abf65ce0173f5b9d3f486079a 100644 (file)
@@ -1,6 +1,4 @@
 /*
- * $Id$
- * 
  * A server-side module for Citadel designed to filter idiots off the network.
  * 
  * Copyright (c) 2002-2009 by the citadel.org team
@@ -51,9 +49,7 @@
 #include "support.h"
 #include "config.h"
 #include "control.h"
-#include "room_ops.h"
 #include "user_ops.h"
-#include "policy.h"
 #include "database.h"
 #include "msgbase.h"
 #include "serv_network.h"      /* Needed for defenition of FilterList */
@@ -126,6 +122,6 @@ CTDL_MODULE_INIT(netfilter)
                CtdlRegisterNetprocHook(filter_the_idiots);
        }
        
-       /* return our Subversion id for the Log */
-       return "$Id$";
+       /* return our module name for the log */
+       return "netfilter";
 }