Remove libratbox's snprintf.c, update related ircd code

This commit is contained in:
Valerii Iatsko 2016-02-10 02:25:32 +01:00
parent e44504ebf1
commit 5203cba5ce
92 changed files with 327 additions and 1120 deletions

View file

@ -209,7 +209,7 @@ propagate_generic(struct Client *source_p, const char *command,
va_list args;
va_start(args, format);
rb_vsnprintf(buffer, sizeof(buffer), format, args);
vsnprintf(buffer, sizeof(buffer), format, args);
va_end(args);
sendto_match_servs(source_p, target, cap, NOCAPS,
@ -230,7 +230,7 @@ cluster_generic(struct Client *source_p, const char *command,
rb_dlink_node *ptr;
va_start(args, format);
rb_vsnprintf(buffer, sizeof(buffer), format, args);
vsnprintf(buffer, sizeof(buffer), format, args);
va_end(args);
RB_DLINK_FOREACH(ptr, cluster_conf_list.head)
@ -827,4 +827,3 @@ find_tgchange(const char *host)
return NULL;
}