Check-in [e130c2e781]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
SHA1 Hash:e130c2e781e4b2cc4364451199f15b04236f61c0
Date: 2012-05-26 20:59:55
User: stephan
Comment:Minor error text rewording (for clarity). Suggestion from the mailing list.
Tags And Properties
Changes

Changes to src/db.c

1081 1081 1082 1082 1083 /* 1083 /* 1084 ** Open the local database. If unable, exit with an error. 1084 ** Open the local database. If unable, exit with an error. 1085 */ 1085 */ 1086 void db_must_be_within_tree(void){ 1086 void db_must_be_within_tree(void){ 1087 if( db_open_local()==0 ){ 1087 if( db_open_local()==0 ){ 1088 fossil_fatal("not within an open checkout"); | 1088 fossil_fatal("current directory is not within an open checkout"); 1089 } 1089 } 1090 db_open_repository(0); 1090 db_open_repository(0); 1091 db_verify_schema(); 1091 db_verify_schema(); 1092 } 1092 } 1093 1093 1094 /* 1094 /* 1095 ** Close the database connection. 1095 ** Close the database connection.