]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - modules/m_xline.c
dlink -> rb_dlink
[irc/rqf/shadowircd.git] / modules / m_xline.c
index 356635347008b86bd52da9cea9ab0653979b475c..32ddeba8456205b39628791a9d1ccab921758f69 100644 (file)
@@ -373,7 +373,7 @@ write_xline(struct Client *source_p, struct ConfItem *aconf)
                return;
        }
 
-       ircsprintf(buffer, "\"%s\",\"0\",\"%s\",\"%s\",%ld\n",
+       rb_sprintf(buffer, "\"%s\",\"0\",\"%s\",\"%s\",%ld\n",
                   aconf->name, aconf->passwd,
                   get_oper_name(source_p), CurrentTime);
 
@@ -593,7 +593,7 @@ remove_xline_from_file(struct Client *source_p, const char *huntgecos)
        int found_xline = 0;
 
        filename = ConfigFileEntry.xlinefile;
-       ircsnprintf(temppath, sizeof(temppath),
+       rb_snprintf(temppath, sizeof(temppath),
                 "%s.tmp", ConfigFileEntry.xlinefile);
 
        if((in = fopen(filename, "r")) == NULL)