Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | fix typo |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
a61fe7b87876b06b0430be8ab2660b6f |
| User & Date: | ron 2010-02-01 06:45:31.000 |
Context
|
2010-02-01
| ||
| 15:07 | Make the new multi-repository fossil server feature work with the "clone" command. check-in: a918bdf56b user: drh tags: trunk | |
| 06:45 | fix typo check-in: a61fe7b878 user: ron tags: trunk | |
|
2010-01-31
| ||
| 20:29 | If the REPOSITORY argument to the "server" or "http" commands is a directory, then use the first element of PATH_INFO as the basename of a repository in that directory. check-in: 9cd2c42e79 user: drh tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
870 871 872 873 874 875 876 |
}
db_open_repository(zRep);
if( g.repositoryOpen ){
return;
}
rep_not_found:
if( errIfNotFound ){
| | | 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 |
}
db_open_repository(zRep);
if( g.repositoryOpen ){
return;
}
rep_not_found:
if( errIfNotFound ){
fossil_fatal("use --repository or -R to specify the repository database");
}
}
/*
** Open the local database. If unable, exit with an error.
*/
void db_must_be_within_tree(void){
|
| ︙ | ︙ |