Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fixed ticket [5df2715635b99bd46a] (check-in count mismatch). |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
b27c0d6d3fd0abe50a14e85b557f16fd |
| User & Date: | stephan 2013-02-18 13:46:41.195 |
Context
|
2013-02-18
| ||
| 22:35 | Update version of OpenSSL that is referred to in the makefiles. ... (check-in: ab9b449190 user: mistachkin tags: trunk) | |
| 13:46 | Fixed ticket [5df2715635b99bd46a] (check-in count mismatch). ... (check-in: b27c0d6d3f user: stephan tags: trunk) | |
|
2013-02-17
| ||
| 14:43 | Remove two unused variables ... (check-in: a98467b661 user: jan.nijtmans tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
207 208 209 210 211 212 213 |
#endif
fossil_print("project-code: %s\n", db_get("project-code", ""));
vid = g.localOpen ? db_lget_int("checkout", 0) : 0;
if( vid ){
show_common_info(vid, "checkout:", 1, 1);
}
fossil_print("checkins: %d\n",
| | | 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 |
#endif
fossil_print("project-code: %s\n", db_get("project-code", ""));
vid = g.localOpen ? db_lget_int("checkout", 0) : 0;
if( vid ){
show_common_info(vid, "checkout:", 1, 1);
}
fossil_print("checkins: %d\n",
db_int(-1, "SELECT count(*) FROM event WHERE type='ci' /*scan*/"));
}else{
int rid;
rid = name_to_rid(g.argv[2]);
if( rid==0 ){
fossil_panic("no such object: %s\n", g.argv[2]);
}
show_common_info(rid, "uuid:", 1, 1);
|
| ︙ | ︙ |