aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'FICS/command.c')
-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++;
}