*** empty log message ***

This commit is contained in:
Mike Goslin 2000-12-15 00:13:54 +00:00
parent 26d7cb8ccb
commit d143358212
2 changed files with 2 additions and 1 deletions

View File

@ -423,6 +423,7 @@ run(void) {
if (write_to_disk(_current_status) == false)
return DS_error_write;
}
_dest_stream.close();
return DS_success;
} else {
if (downloader_cat.is_debug())

View File

@ -109,7 +109,7 @@ run(void) {
// Write to the out file
char *start = _buffer->_buffer;
int size = _source_buffer_length;
if (_mfile.write_extract(start, size, _rel_path) == true) {
if (_mfile.write(start, size, _rel_path) == true) {
_read_stream.close();
_source_file.unlink();
return ES_success;