Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Remove superfluous slash from '.fossil-settings' path construction in print_setting(). |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
fad1dd0a8ed0a77a71595bc46d715c06 |
| User & Date: | mistachkin 2015-04-10 00:45:20.845 |
Context
|
2015-04-10
| ||
| 05:31 | Minor correction to comment, no code change. check-in: d397f1cdc4 user: andybradford tags: trunk | |
| 00:46 | Merge mark. check-in: 6fec235a9f user: mistachkin tags: andygoth-versioned-open | |
| 00:45 | Remove superfluous slash from '.fossil-settings' path construction in print_setting(). check-in: fad1dd0a8e user: mistachkin tags: trunk | |
| 00:27 | Restore the --soft/--hard option processing for mv/rm, which was removed by mistake. check-in: 86212ecee3 user: mistachkin tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
2285 2286 2287 2288 2289 2290 2291 |
}else{
fossil_print("%-20s\n", pSetting->name);
}
if( pSetting->versionable && g.localOpen ){
/* Check to see if this is overridden by a versionable settings file */
Blob versionedPathname;
blob_zero(&versionedPathname);
| | | 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 |
}else{
fossil_print("%-20s\n", pSetting->name);
}
if( pSetting->versionable && g.localOpen ){
/* Check to see if this is overridden by a versionable settings file */
Blob versionedPathname;
blob_zero(&versionedPathname);
blob_appendf(&versionedPathname, "%s.fossil-settings/%s",
g.zLocalRoot, pSetting->name);
if( file_size(blob_str(&versionedPathname))>=0 ){
fossil_print(" (overridden by contents of file .fossil-settings/%s)\n",
pSetting->name);
}
}
db_finalize(&q);
|
| ︙ | ︙ |