X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/212380e3f42f585dc1ea927402252eb943f91f7b..af81d5a0b09446188fd6f9c292b51519f2c1cedd:/src/irc_string.c diff --git a/src/irc_string.c b/src/irc_string.c index 26dbfca..d1d8e20 100644 --- a/src/irc_string.c +++ b/src/irc_string.c @@ -392,7 +392,7 @@ inetntoa(const char *in) * SOFTWARE. */ -#define SPRINTF(x) ((size_t)ircsprintf x) +#define SPRINTF(x) ((size_t)rb_sprintf x) /* * WARNING: Don't even consider trying to compile this on a system where @@ -811,7 +811,7 @@ inetpton(af, src, dst) if(inet_pton4(src, dst)) { char tmp[HOSTIPLEN]; - ircsprintf(tmp, "::ffff:%s", src); + rb_sprintf(tmp, "::ffff:%s", src); return (inet_pton6(tmp, dst)); } else