Changeset 1061
- Timestamp:
- 08/05/07 01:55:26 (1 year ago)
- Files:
-
- 1.8.2/trunk/CHANGES.182 (modified) (1 diff)
- 1.8.2/trunk/src/game.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.8.2/trunk/CHANGES.182
r1027 r1061 13 13 14 14 ========================================================================== 15 16 Version 1.8.2 patchlevel 7 ???? ??, 2007 17 18 Fixes: 19 * Clarified the behavior of eval() and get_eval() in help. 20 Suggested by Talvo and Javelin. 21 * A failed db save no longer broadcasts a success message 22 in addition to a failure one. Reported by Cooee. 23 * The open database file wasn't getting closed on a failed 24 save. 15 25 16 26 Version 1.8.2 patchlevel 6 July 9, 2007 1.8.2/trunk/src/game.c
r1027 r1061 339 339 flag_broadcast("WIZARD ROYALTY", 0, 340 340 T("GAME: ERROR! Database save failed!")); 341 if (f) 342 db_close(f); 341 343 #ifndef PROFILING 342 344 #ifdef HAS_ITIMER … … 522 524 523 525 do_rawlog(LT_ERR, "DUMPING: %s.#%d#", globals.dumpfile, epoch); 524 dump_database_internal();525 do_rawlog(LT_ERR, "DUMPING: %s.#%d# (done)", globals.dumpfile, epoch);526 if (!dump_database_internal()) 527 do_rawlog(LT_ERR, "DUMPING: %s.#%d# (done)", globals.dumpfile, epoch); 526 528 } 527 529 … … 616 618 } else { 617 619 reserve_fd(); 618 if ( DUMP_NOFORK_COMPLETE && *DUMP_NOFORK_COMPLETE)620 if (!status && DUMP_NOFORK_COMPLETE && *DUMP_NOFORK_COMPLETE) 619 621 flag_broadcast(0, 0, "%s", DUMP_NOFORK_COMPLETE); 620 622 }
