Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a bug in "fossil rm". Ticket [15f8f4a4252] |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
fbcefb6e4ebd5b8e186f86c48adcbaac |
User & Date: | drh 2010-01-24 01:41:58.000 |
References
2010-01-24
| ||
01:42 | • Fixed ticket [15f8f4a425]: fossil rm "not a ordinary file" errors plus 3 other changes ... (artifact: f36a3a9c5a user: drh) | |
Context
2010-01-24
| ||
07:07 | fix [a395f43b33e8e48d4c72d158530bdd88c2eebb5d] ... (check-in: afe70a4646 user: ron tags: trunk) | |
01:41 | Fix a bug in "fossil rm". Ticket [15f8f4a4252] ... (check-in: fbcefb6e4e user: drh tags: trunk) | |
2010-01-23
| ||
21:48 | Cause browsers to cache the logo and style sheet. ... (check-in: 08c0a9ff0c user: drh tags: trunk) | |
Changes
Changes to src/vfile.c.
︙ | ︙ | |||
165 166 167 168 169 170 171 | id = db_column_int(&q, 0); zName = db_column_text(&q, 1); rid = db_column_int(&q, 2); isDeleted = db_column_int(&q, 3); oldChnged = db_column_int(&q, 4); oldMtime = db_column_int64(&q, 6); | > > | | | | 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | id = db_column_int(&q, 0); zName = db_column_text(&q, 1); rid = db_column_int(&q, 2); isDeleted = db_column_int(&q, 3); oldChnged = db_column_int(&q, 4); oldMtime = db_column_int64(&q, 6); if( isDeleted ){ chnged = 1; }else if( !file_isfile(zName) && file_size(0)>=0 ){ if( notFileIsFatal ){ fossil_warning("not an ordinary file: %s", zName); nErr++; } chnged = 1; }else if( oldChnged>=2 ){ chnged = oldChnged; }else if( rid==0 ){ chnged = 1; } if( chnged!=1 ){ currentMtime = file_mtime(0); assert( currentMtime>0 ); } if( chnged!=1 && (checkMtime==0 || currentMtime!=oldMtime) ){ |
︙ | ︙ |