aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/board.c
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2025-10-04 13:55:04 +0200
committerMarkus Uhlin <markus@nifty-networks.net>2025-10-04 13:55:04 +0200
commit7a3fd562cb80da8881a5cebeab0641fcb7b2af30 (patch)
tree6361222b350e98e2c2c22c5c649c0fcb7b60ec85 /FICS/board.c
parent85b030a13a3c802c2d8e9d064e7c8665c2a0c54a (diff)
Refer to the array indices by using enums
Diffstat (limited to 'FICS/board.c')
-rw-r--r--FICS/board.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/FICS/board.c b/FICS/board.c
index 2423024..a119604 100644
--- a/FICS/board.c
+++ b/FICS/board.c
@@ -1329,7 +1329,8 @@ wild_update(int style)
msnprintf(fname, sizeof fname, "%s/wild/%d", board_dir, style);
- if ((fd = open(fname, g_open_flags[1], g_open_modes)) < 0) {
+ if ((fd = open(fname, g_open_flags[OPFL_WRITE],
+ g_open_modes)) < 0) {
warn("%s: can't write file name: %s", __func__, fname);
return;
} else if ((fp = fdopen(fd, "w")) == NULL) {