X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/cc200171d7c40be3b204460f9c14d5d37e771866..ad884f939ea6f1b84c192b9dd4b2f51a71cfcdb5:/src/supported.c diff --git a/src/supported.c b/src/supported.c index f8a3250..b062d55 100644 --- a/src/supported.c +++ b/src/supported.c @@ -103,7 +103,7 @@ add_isupport(const char *name, const char *(*func)(const void *), const void *pa { struct isupportitem *item; - item = MyMalloc(sizeof(struct isupportitem)); + item = rb_malloc(sizeof(struct isupportitem)); item->name = name; item->func = func; item->param = param; @@ -123,7 +123,7 @@ delete_isupport(const char *name) if (!strcmp(item->name, name)) { rb_dlinkDelete(ptr, &isupportlist); - MyFree(item); + rb_free(item); } } } @@ -162,12 +162,12 @@ show_isupport(struct Client *client_p) nchars = extra_space, nparams = 0, buf[0] = '\0'; } if (nparams > 0) - strlcat(buf, " ", sizeof buf), nchars++; - strlcat(buf, item->name, sizeof buf); + rb_strlcat(buf, " ", sizeof buf), nchars++; + rb_strlcat(buf, item->name, sizeof buf); if (!EmptyString(value)) { - strlcat(buf, "=", sizeof buf); - strlcat(buf, value, sizeof buf); + rb_strlcat(buf, "=", sizeof buf); + rb_strlcat(buf, value, sizeof buf); } nchars += l; nparams++;