home · contact · privacy
Fixed typo in SERVER_COMMANDS.
[plomrogue] / src / client / cleanup.c
index bcf52ac405e0a31ab41c5df4f85ea1e38d432d45..3499246c7abcb6b324844a0c52bd401eb238174c 100644 (file)
@@ -4,8 +4,9 @@
 #include <ncurses.h> /* for endwin() */
 #include <stdint.h> /* uint32_t */
 #include <stdlib.h> /* free() */
+#include "../common/readwrite.h" /* try_fclose() */
 #include "command_db.h" /* free_command_db() */
-#include "misc.h" /* unload_interface_conf() */
+#include "interface_conf.h" /* unload_interface_conf() */
 #include "world.h" /* world global */
 
 
@@ -32,6 +33,14 @@ extern void cleanup()
     {
         free_command_db();
     }
+    if (cleanup_flags & CLEANUP_SERVER_IN)
+    {
+        try_fclose(world.file_server_in, __func__);
+    }
+    if (cleanup_flags & CLEANUP_SERVER_OUT)
+    {
+        try_fclose(world.file_server_out, __func__);
+    }
 }