Changeset 1056
- Timestamp:
- 08/05/07 01:41:06 (1 year ago)
- Files:
-
- 1.8.2/branches/devel/CHANGES.182 (modified) (1 diff)
- 1.8.2/branches/devel/src/game.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.8.2/branches/devel/CHANGES.182
r1045 r1056 18 18 Fixes: 19 19 * Clarified the behavior of eval() and get_eval() in help. 20 Suggested by Talvo and Javelin. 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. 21 23 22 24 Version 1.8.2 patchlevel 6 July 9, 2007 1.8.2/branches/devel/src/game.c
r1010 r1056 522 522 523 523 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);524 if (!dump_database_internal()) 525 do_rawlog(LT_ERR, "DUMPING: %s.#%d# (done)", globals.dumpfile, epoch); 526 526 } 527 527 … … 616 616 } else { 617 617 reserve_fd(); 618 if ( DUMP_NOFORK_COMPLETE && *DUMP_NOFORK_COMPLETE)618 if (!status && DUMP_NOFORK_COMPLETE && *DUMP_NOFORK_COMPLETE) 619 619 flag_broadcast(0, 0, "%s", DUMP_NOFORK_COMPLETE); 620 620 }
