Differences From:
File
src/checkout.c
part of check-in
[999b1779e7]
- Make use of the is_a_version() function to check for valid version IDs
in the checkout command. Ticket 2de4ae605844fe3f.
by
drh on
2009-10-31 13:11:35.
[view]
To:
File
src/checkout.c
part of check-in
[76f169fca6]
- Detect when the check-out contains missing files and filesystem objects that
ought to be files but are not. Issue reasonable warnings.
by
drh on
2009-12-18 00:29:51.
Also file
src/checkout.c
part of check-in
[76bc05d739]
- merge with trunk
by
btheado on
2009-12-30 20:33:59.
[view]
@@ -40,9 +40,9 @@
int vid;
db_must_be_within_tree();
vid = db_lget_int("checkout",0);
if( vid==0 ) return 2;
- vfile_check_signature(vid);
+ vfile_check_signature(vid, 1);
return db_exists("SELECT 1 FROM vfile WHERE chnged"
" OR coalesce(origname!=pathname,0)");
}