Author: Kev <klmitch@mit.edu>
authorKevin L. Mitchell <klmitch@mit.edu>
Sat, 28 Jul 2001 17:00:31 +0000 (17:00 +0000)
committerKevin L. Mitchell <klmitch@mit.edu>
Sat, 28 Jul 2001 17:00:31 +0000 (17:00 +0000)
Log message:

Fix minor typo; I should test-compile *before* I commit, *sigh*.

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

ChangeLog
ircd/s_user.c

index 725ebac7e3ba1ffc87fbfcec2dbf2cb8bfa1db39..02ddb2d8909b6c7968f37ca41f0610cc5d0dc037 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2001-07-28  Kevin L. Mitchell  <klmitch@mit.edu>
 
+       * ircd/s_user.c (send_supported): oops, minor typo...
+
        * ircd/s_user.c: implement send_supported() to send two ISUPPORT
        messages containing our feature buffers; make register_user() use
        send_supported()
index 96391a3f9a05e3fe7e34d0b35bcc6133e5ec554f..78b1b0f35ca9334c64faf4d991751ee3d42595fe 100644 (file)
@@ -1545,9 +1545,9 @@ send_supported(struct Client *cptr)
   char featurebuf[512];
 
   ircd_snprintf(0, featurebuf, sizeof(featurebuf), FEATURES1, FEATURESVALUES1);
-  send_reply(sptr, RPL_ISUPPORT, featurebuf);
+  send_reply(cptr, RPL_ISUPPORT, featurebuf);
   ircd_snprintf(0, featurebuf, sizeof(featurebuf), FEATURES2, FEATURESVALUES2);
-  send_reply(sptr, RPL_ISUPPORT, featurebuf);
+  send_reply(cptr, RPL_ISUPPORT, featurebuf);
 
   return 0; /* convenience return, if it's ever needed */
 }