Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Remove a hack that no longer works after calling `verify_all_options()'. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
a4fc47ad4a4694d1f3ac906d6fe37b0c |
| User & Date: | florian 2023-12-13 07:18:00.000 |
Context
|
2023-12-13
| ||
| 07:40 | Modify [b1dc17a0aa]: Use the APIs from hname.c to find hash algorithm names. ... (check-in: a99a0fc08b user: florian tags: trunk) | |
| 07:18 | Remove a hack that no longer works after calling `verify_all_options()'. ... (check-in: a4fc47ad4a user: florian tags: trunk) | |
| 07:12 | Adapt the help text for the `open' command to the implementation. ... (check-in: b2ab66ea0d user: florian tags: trunk) | |
Changes
Changes to src/branch.c.
| ︙ | ︙ | |||
304 305 306 307 308 309 310 |
const char *zUser
){
Blob sql;
blob_init(&sql, 0, 0);
brlist_create_temp_table();
/* Ignore nLimitMRU if no chronological sort requested. */
if( (brFlags & BRL_ORDERBY_MTIME)==0 ) nLimitMRU = 0;
| | < | | 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 |
const char *zUser
){
Blob sql;
blob_init(&sql, 0, 0);
brlist_create_temp_table();
/* Ignore nLimitMRU if no chronological sort requested. */
if( (brFlags & BRL_ORDERBY_MTIME)==0 ) nLimitMRU = 0;
/* Negative values for nLimitMRU also mean "no limit". */
if( nLimitMRU<0 ) nLimitMRU = 0;
/* OUTER QUERY */
blob_append_sql(&sql,"SELECT name, isprivate, mergeto,");
if( brFlags & BRL_LIST_USERS ){
blob_append_sql(&sql,
" (SELECT group_concat(user) FROM ("
" SELECT DISTINCT * FROM ("
" SELECT coalesce(euser,user) AS user"
|
| ︙ | ︙ |