Differences From Artifact [4f9c1e0d0c]:
- File src/update.c — part of check-in [ffe1b60a36] at 2011-01-18 20:47:00 on branch trunk — Preserve timestamps across an "update" to reduce I/O on the next "status". Ticket [809a9612055340d06]. (user: drh size: 19437)
To Artifact [aa1d1eee1b]:
- File src/update.c — part of check-in [3b82ee5483] at 2011-02-18 22:25:08 on branch trunk — Fix a panic message in the historical_version_of_file() routine. (user: drh size: 19546)
| ︙ | |||
481 482 483 484 485 486 487 488 489 490 491 492 493 494 | 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 | + + + |
}
}
manifest_destroy(pManifest);
if( errCode<=0 ){
fossil_fatal("file %s does not exist in checkin: %s", file, revision);
}
}else if( errCode<=0 ){
if( revision==0 ){
revision = db_text("current", "SELECT uuid FROM blob WHERE rid=%d", rid);
}
fossil_panic("could not parse manifest for checkin: %s", revision);
}
return errCode;
}
/*
|
| ︙ |