Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / s_user.c
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 */
 }