Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Bug fix to "update": identify the local user correctly. Contributed by Andy Bradford. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
8e50e2e7bdddbc741943b4861d7b66bf |
| User & Date: | drh 2013-09-09 13:11:36.646 |
Context
|
2013-09-09
| ||
| 13:13 | Tweaks to the change log. check-in: e7202edf0c user: drh tags: trunk | |
| 13:11 | Bug fix to "update": identify the local user correctly. Contributed by Andy Bradford. check-in: 8e50e2e7bd user: drh tags: trunk | |
| 13:07 | Increase the version number to 1.27 in preparation for the next release. check-in: 6950e08d07 user: drh tags: trunk | |
Changes
Changes to src/update.c.
| ︙ | ︙ | |||
126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
setmtimeFlag = find_option("setmtime",0,0)!=0;
capture_case_sensitive_option();
db_must_be_within_tree();
vid = db_lget_int("checkout", 0);
if( vid==0 ){
fossil_fatal("cannot find current version");
}
if( !dryRunFlag && !internalUpdate ){
autosync(SYNC_PULL + SYNC_VERBOSE*verboseFlag);
}
/* Create any empty directories now, as well as after the update,
** so changes in settings are reflected now */
if( !dryRunFlag ) ensure_empty_dirs_created();
| > | 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
setmtimeFlag = find_option("setmtime",0,0)!=0;
capture_case_sensitive_option();
db_must_be_within_tree();
vid = db_lget_int("checkout", 0);
if( vid==0 ){
fossil_fatal("cannot find current version");
}
user_select();
if( !dryRunFlag && !internalUpdate ){
autosync(SYNC_PULL + SYNC_VERBOSE*verboseFlag);
}
/* Create any empty directories now, as well as after the update,
** so changes in settings are reflected now */
if( !dryRunFlag ) ensure_empty_dirs_created();
|
| ︙ | ︙ |