Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove unused variable |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
302ce43947d99c4c4e11965a379cee28 |
User & Date: | andygoth 2019-01-19 21:03:02.317 |
Context
2019-01-20
| ||
01:52 | Largely rewrote www/ssl.wiki, it being 7 years since the last update, during which time much has changed in TLS land. Added the initial version of www/tls-nginx.md as a companion article to it, since the topic is too deep to get into within ssl.wiki. Finally, added a new script, tools/fslsrv, referred to by tls-nginx.md, since it's too big to put inline within the article. ... (check-in: 062d2bf6 user: wyoung tags: trunk) | |
2019-01-19
| ||
21:03 | Remove unused variable ... (check-in: 302ce439 user: andygoth tags: trunk) | |
18:29 | Enhance the stash so that it stores hashes and no long depends on RID value. Do this is a way that is backwards compatible and transparent to the user. After running any "stash" command using this version of Fossil or later, the schema will automatically update and the stash should survive a subsequent RID renumbering event in the repository without damage. ... (check-in: ed06585f user: drh tags: trunk) | |
Changes
Changes to src/stash.c.
︙ | ︙ | |||
575 576 577 578 579 580 581 | ** fossil stash diff ?STASHID? ?DIFF-OPTIONS? ** fossil stash gdiff ?STASHID? ?DIFF-OPTIONS? */ void stash_cmd(void){ const char *zCmd; int nCmd; int stashid = 0; | < | 575 576 577 578 579 580 581 582 583 584 585 586 587 588 | ** fossil stash diff ?STASHID? ?DIFF-OPTIONS? ** fossil stash gdiff ?STASHID? ?DIFF-OPTIONS? */ void stash_cmd(void){ const char *zCmd; int nCmd; int stashid = 0; undo_capture_command_line(); db_must_be_within_tree(); db_open_config(0, 0); db_begin_transaction(); stash_tables_exist_and_current(); if( g.argc<=2 ){ zCmd = "save"; |
︙ | ︙ |