Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix to the db_open_local() function in the case where the root directory is writable by the current user. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
d0d4c5f5753e7c82049658c5fa1992f0 |
| User & Date: | dan 2007-07-28 08:15:54.000 |
Context
|
2007-07-30
| ||
| 05:17 | Delete records from the temporary table "pending" after sending them. check-in: 23c8dad306 user: dan tags: trunk | |
|
2007-07-28
| ||
| 08:15 | Fix to the db_open_local() function in the case where the root directory is writable by the current user. check-in: d0d4c5f575 user: dan tags: trunk | |
| 08:04 | Remove a c++ism from deltacmd.c. check-in: 0c227fa406 user: dan tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
525 526 527 528 529 530 531 |
char zPwd[2000];
if( g.localOpen) return 1;
if( getcwd(zPwd, sizeof(zPwd)-20)==0 ){
db_err("pwd too big: max %d", sizeof(zPwd)-20);
}
n = strlen(zPwd);
while( n>0 ){
| | > | > > | | 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 |
char zPwd[2000];
if( g.localOpen) return 1;
if( getcwd(zPwd, sizeof(zPwd)-20)==0 ){
db_err("pwd too big: max %d", sizeof(zPwd)-20);
}
n = strlen(zPwd);
while( n>0 ){
if( access(zPwd, W_OK) ) break;
strcpy(&zPwd[n], "/_FOSSIL_");
if( isValidLocalDb(zPwd) ){
/* Found a valid _FOSSIL_ file */
zPwd[n] = 0;
g.zLocalRoot = mprintf("%s/", zPwd);
return 1;
}
n--;
while( n>0 && zPwd[n]!='/' ){ n--; }
while( n>0 && zPwd[n-1]=='/' ){ n--; }
zPwd[n] = 0;
}
/* A _FOSSIL_ file could not be found */
return 0;
}
/*
** Open the repository database given by zDbName. If zDbName==NULL then
** get the name from the already open local database.
*/
void db_open_repository(const char *zDbName){
|
| ︙ | ︙ |