diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 02:42:15 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 02:42:15 +0100 |
commit | 0bacffa610b2d283732e6c58ecdb877bcc96efda (patch) | |
tree | dc21a12b07896417e35a04a800164ff0d0c78975 /FICS/obsproc.c | |
parent | d16c6caf825442bf9cc63a2e92903925e6cfabf9 (diff) |
stored_mail_moves: corrected arg 2 passed to ReadGameAttrs()
Diffstat (limited to 'FICS/obsproc.c')
-rw-r--r-- | FICS/obsproc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FICS/obsproc.c b/FICS/obsproc.c index c696fe7..28fe4f0 100644 --- a/FICS/obsproc.c +++ b/FICS/obsproc.c @@ -1005,8 +1005,9 @@ stored_mail_moves(int p, int mail, param_list param) } else { g = game_new(); + /* XXX: was 'fileName' */ if (ReadGameAttrs(fpGame, - fileName, g) < 0) + fileName2, g) < 0) pprintf(p, "Journal " "entry is corrupt; " "please notify an " |