Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Remove unused variable from ticket_cmd(). |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
a0b3769b0122cb3ca4458dd1768922f2 |
| User & Date: | dmitry 2011-09-08 13:07:57.839 |
Context
|
2011-09-08
| ||
| 14:30 | Add comment describing file_wd_isfile() function. ... (check-in: f23334cbda user: dmitry tags: trunk) | |
| 13:07 | Remove unused variable from ticket_cmd(). ... (check-in: a0b3769b01 user: dmitry tags: trunk) | |
| 13:02 | Merge fixes and refactoring from symlinks branch. ... (check-in: c05f6afaf2 user: dmitry tags: trunk) | |
Changes
Changes to src/tkt.c.
| ︙ | ︙ | |||
1009 1010 1011 1012 1013 1014 1015 |
if( eCmd==err ){
usage("add|fieldlist|set|show|history");
}
/* we just handle history separately here, does not get out */
if( eCmd==history ){
Stmt q;
| < | 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 |
if( eCmd==err ){
usage("add|fieldlist|set|show|history");
}
/* we just handle history separately here, does not get out */
if( eCmd==history ){
Stmt q;
int tagid;
if ( i != g.argc ){
fossil_fatal("no other parameters expected to %s!",g.argv[2]);
}
tagid = db_int(0, "SELECT tagid FROM tag WHERE tagname GLOB 'tkt-%q*'",zTktUuid);
if( tagid==0 ){
|
| ︙ | ︙ |