]> jfr.im git - solanum.git/blobdiff - ircd/supported.c
authd/provider: add options handlers for providers
[solanum.git] / ircd / supported.c
index 69a95d6279691055933ab7405292b7b4f8b9c31c..c28ed9d03ba5bfa6e93d68a4c1275c7b0a215c17 100644 (file)
@@ -27,8 +27,6 @@
  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  * POSSIBILITY OF SUCH DAMAGE.
- *
- *  $Id: supported.c 3568 2007-09-09 18:59:08Z jilles $
  */
 
 /* From the old supported.h which is
@@ -74,7 +72,6 @@
 
 #include "stdinc.h"
 #include "client.h"
-#include "common.h"
 #include "numeric.h"
 #include "ircd.h"
 #include "s_conf.h"
@@ -201,7 +198,7 @@ const char *
 isupport_intptr(const void *ptr)
 {
        static char buf[15];
-       rb_snprintf(buf, sizeof buf, "%d", *(const int *)ptr);
+       snprintf(buf, sizeof buf, "%d", *(const int *)ptr);
        return buf;
 }
 
@@ -240,7 +237,7 @@ isupport_chanmodes(const void *ptr)
 {
        static char result[80];
 
-       rb_snprintf(result, sizeof result, "%s%sbq,k,%slj,%s",
+       snprintf(result, sizeof result, "%s%sbq,k,%slj,%s",
                        ConfigChannel.use_except ? "e" : "",
                        ConfigChannel.use_invex ? "I" : "",
                        ConfigChannel.use_forward ? "f" : "",
@@ -259,7 +256,7 @@ isupport_chanlimit(const void *ptr)
 {
        static char result[30];
 
-       rb_snprintf(result, sizeof result, "%s:%i",
+       snprintf(result, sizeof result, "%s:%i",
                ConfigChannel.disable_local_channels ? "#" : "&#", ConfigChannel.max_chans_per_user);
        return result;
 }
@@ -269,7 +266,7 @@ isupport_maxlist(const void *ptr)
 {
        static char result[30];
 
-       rb_snprintf(result, sizeof result, "bq%s%s:%i",
+       snprintf(result, sizeof result, "bq%s%s:%i",
                        ConfigChannel.use_except ? "e" : "",
                        ConfigChannel.use_invex ? "I" : "",
                        ConfigChannel.max_bans);
@@ -281,7 +278,7 @@ isupport_targmax(const void *ptr)
 {
        static char result[200];
 
-       rb_snprintf(result, sizeof result, "NAMES:1,LIST:1,KICK:1,WHOIS:1,PRIVMSG:%d,NOTICE:%d,ACCEPT:,MONITOR:",
+       snprintf(result, sizeof result, "NAMES:1,LIST:1,KICK:1,WHOIS:1,PRIVMSG:%d,NOTICE:%d,ACCEPT:,MONITOR:",
                        ConfigFileEntry.max_targets,
                        ConfigFileEntry.max_targets);
        return result;
@@ -296,7 +293,7 @@ isupport_extban(const void *ptr)
        p = get_extban_string();
        if (EmptyString(p))
                return NULL;
-       rb_snprintf(result, sizeof result, "$,%s", p);
+       snprintf(result, sizeof result, "$,%s", p);
        return result;
 }
 
@@ -305,7 +302,7 @@ isupport_nicklen(const void *ptr)
 {
        static char result[200];
 
-       rb_snprintf(result, sizeof result, "%u", ConfigFileEntry.nicklen - 1);
+       snprintf(result, sizeof result, "%u", ConfigFileEntry.nicklen - 1);
        return result;
 }