Author: Kev <klmitch@mit.edu>
authorKevin L. Mitchell <klmitch@mit.edu>
Tue, 5 Dec 2000 23:13:29 +0000 (23:13 +0000)
committerKevin L. Mitchell <klmitch@mit.edu>
Tue, 5 Dec 2000 23:13:29 +0000 (23:13 +0000)
Log message:

ircd_features.c is supposed to #include "ircd_features.h", not
"features.h"

Testing done: compiles cleanly

git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@323 c9e4aea6-c8fd-4c43-8297-357d70d61c8c

ChangeLog
ircd/Makefile.in
ircd/ircd_features.c

index 881597ab41e8505b07303049ff06ebe2144b00c4..5c1f546fcca6ce01632cc49a1ccdbcb36ae3381a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2000-12-06  Kevin L. Mitchell  <klmitch@mit.edu>
+
+       * ircd/ircd_features.c: #include was supposed to be for
+         ircd_features.h, not features.h--missed when I had to do a
+         rename because of namespace collision
+
 2000-12-05  Greg Sikorski <gte@atomicrevs.demon.co.uk>
        * ircd/m_topic.c: Added missing braces that caused all remote
          topics to be ignored.
index c0966bd004621f7f089fa2f1ccd2bc4ae546fb3c..050aa6d0cd036378fb62fde9ea77ca63c99c50bb 100644 (file)
@@ -364,7 +364,7 @@ ircd.o: ircd.c ../include/ircd.h ../config/config.h ../config/setup.h \
 ircd_alloc.o: ircd_alloc.c ../include/ircd_alloc.h ../include/fda.h \
  ../include/ircd_string.h ../config/config.h ../config/setup.h \
  ../include/ircd_chattr.h ../include/s_debug.h ../include/ircd_defs.h
-ircd_features.o: ircd_features.c /usr/include/features.h \
+ircd_features.o: ircd_features.c ../include/ircd_features.h \
  ../include/client.h ../include/ircd_defs.h ../config/config.h \
  ../config/setup.h ../include/dbuf.h ../include/ircd_handler.h \
  ../include/hash.h ../include/ircd.h ../include/struct.h \
index aac26e163dce82e273316736e3aedccbaaefbdcd..25d17c0646b429ce4e4a7ec024a558664266ba36 100644 (file)
@@ -18,7 +18,7 @@
  *
  * $Id$
  */
-#include "features.h"
+#include "ircd_features.h"
 #include "client.h"
 #include "hash.h"
 #include "ircd.h"