aboutsummaryrefslogtreecommitdiffstats
path: root/FICS
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2026-04-25 13:06:13 +0200
committerMarkus Uhlin <markus@nifty-networks.net>2026-04-25 13:06:13 +0200
commit55332f072b158d86ffe5a2f3b42532f4e61d42ad (patch)
tree0d656c0ea1d54c513031c4d706cbd28ed85205a4 /FICS
parent157995f7f40fd4e6916ce41831af5cf2401737ce (diff)
Usage of mfprintf()
Diffstat (limited to 'FICS')
-rw-r--r--FICS/command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/FICS/command.c b/FICS/command.c
index b13cb35..0d0f9f2 100644
--- a/FICS/command.c
+++ b/FICS/command.c
@@ -1340,9 +1340,9 @@ commands_init(void)
while (command_list[i].comm_name) {
if (command_list[i].adminLevel >= ADMIN_ADMIN)
- fprintf(afp, "%s\n", command_list[i].comm_name);
+ mfprintf(afp, "%s\n", command_list[i].comm_name);
else
- fprintf(fp, "%s\n", command_list[i].comm_name);
+ mfprintf(fp, "%s\n", command_list[i].comm_name);
i++;
}