Fossil SCM
Fixing annotate. It was hanging.
Commit
96c3133576e55f04d6c92e70f1ab6f5c21c38611
Parent
7a8ed6d7df6b214…
1 file changed
+5
-5
+5
-5
| --- src/diff.c | ||
| +++ src/diff.c | ||
| @@ -2262,15 +2262,15 @@ | ||
| 2262 | 2262 | |
| 2263 | 2263 | db_bind_int(&q, ":rid", rid); |
| 2264 | 2264 | if( iLimit==0 ) iLimit = 1000000000; |
| 2265 | 2265 | while( rid && iLimit>cnt && db_step(&q)==SQLITE_ROW ){ |
| 2266 | 2266 | const char *zUuid = db_column_text(&q, 0); |
| 2267 | - const char *zUuidFile = db_column_text(&q, 2); | |
| 2268 | - const char *zUuidParentFile = db_column_text(&q, 3); | |
| 2269 | - const char *zDate = db_column_text(&q, 1); | |
| 2270 | - const char *zUser = db_column_text(&q, 2); | |
| 2271 | - int prevId = db_column_int(&q, 3); | |
| 2267 | + const char *zUuidFile = db_column_text(&q, 1); | |
| 2268 | + const char *zUuidParentFile = db_column_text(&q, 2); | |
| 2269 | + const char *zDate = db_column_text(&q, 3); | |
| 2270 | + const char *zUser = db_column_text(&q, 4); | |
| 2271 | + int prevId = db_column_int(&q, 5); | |
| 2272 | 2272 | if( webLabel ){ |
| 2273 | 2273 | if (zUuidParentFile) { |
| 2274 | 2274 | zLabel = mprintf( |
| 2275 | 2275 | "<a href='%R/info/%s' %s>%.10s</a> " |
| 2276 | 2276 | "<a href='%R/fdiff?v1=%s&v2=%s' %s>d</a> " |
| 2277 | 2277 |
| --- src/diff.c | |
| +++ src/diff.c | |
| @@ -2262,15 +2262,15 @@ | |
| 2262 | |
| 2263 | db_bind_int(&q, ":rid", rid); |
| 2264 | if( iLimit==0 ) iLimit = 1000000000; |
| 2265 | while( rid && iLimit>cnt && db_step(&q)==SQLITE_ROW ){ |
| 2266 | const char *zUuid = db_column_text(&q, 0); |
| 2267 | const char *zUuidFile = db_column_text(&q, 2); |
| 2268 | const char *zUuidParentFile = db_column_text(&q, 3); |
| 2269 | const char *zDate = db_column_text(&q, 1); |
| 2270 | const char *zUser = db_column_text(&q, 2); |
| 2271 | int prevId = db_column_int(&q, 3); |
| 2272 | if( webLabel ){ |
| 2273 | if (zUuidParentFile) { |
| 2274 | zLabel = mprintf( |
| 2275 | "<a href='%R/info/%s' %s>%.10s</a> " |
| 2276 | "<a href='%R/fdiff?v1=%s&v2=%s' %s>d</a> " |
| 2277 |
| --- src/diff.c | |
| +++ src/diff.c | |
| @@ -2262,15 +2262,15 @@ | |
| 2262 | |
| 2263 | db_bind_int(&q, ":rid", rid); |
| 2264 | if( iLimit==0 ) iLimit = 1000000000; |
| 2265 | while( rid && iLimit>cnt && db_step(&q)==SQLITE_ROW ){ |
| 2266 | const char *zUuid = db_column_text(&q, 0); |
| 2267 | const char *zUuidFile = db_column_text(&q, 1); |
| 2268 | const char *zUuidParentFile = db_column_text(&q, 2); |
| 2269 | const char *zDate = db_column_text(&q, 3); |
| 2270 | const char *zUser = db_column_text(&q, 4); |
| 2271 | int prevId = db_column_int(&q, 5); |
| 2272 | if( webLabel ){ |
| 2273 | if (zUuidParentFile) { |
| 2274 | zLabel = mprintf( |
| 2275 | "<a href='%R/info/%s' %s>%.10s</a> " |
| 2276 | "<a href='%R/fdiff?v1=%s&v2=%s' %s>d</a> " |
| 2277 |