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 |
| SHA1: |
dfca123729d3361198ef89ad307c733a |
| User & Date: | jan.nijtmans 2014-03-18 14:52:41.743 |
Context
|
2014-03-18
| ||
| 15:59 | Since file_simplify_name() already was modified to handle the extended path prefix correctly [95f004b1c535c545], this special Cygwin handling is no longer necessary. check-in: e35dbea1e3 user: jan.nijtmans tags: trunk | |
| 14:52 | remove unused variable check-in: dfca123729 user: jan.nijtmans tags: trunk | |
|
2014-03-17
| ||
| 21:05 | Added a pedantic catch for a corner case which never happens (for porting's sake). check-in: 7413229200 user: stephan tags: trunk | |
Changes
Changes to src/name.c.
| ︙ | ︙ | |||
447 448 449 450 451 452 453 |
db_prepare(&q,
"SELECT uuid, size, datetime(mtime%s), ipaddr"
" FROM blob, rcvfrom"
" WHERE rid=%d"
" AND rcvfrom.rcvid=blob.rcvid",
timeline_utc(), rid);
if( db_step(&q)==SQLITE_ROW ){
| < | 447 448 449 450 451 452 453 454 455 456 457 458 459 460 |
db_prepare(&q,
"SELECT uuid, size, datetime(mtime%s), ipaddr"
" FROM blob, rcvfrom"
" WHERE rid=%d"
" AND rcvfrom.rcvid=blob.rcvid",
timeline_utc(), rid);
if( db_step(&q)==SQLITE_ROW ){
if( verboseFlag ){
fossil_print("artifact: %s (%d)\n", db_column_text(&q,0), rid);
fossil_print("size: %d bytes\n", db_column_int(&q,1));
fossil_print("received: %s from %s\n",
db_column_text(&q, 2),
db_column_text(&q, 3));
}else{
|
| ︙ | ︙ | |||
596 597 598 599 600 601 602 |
if( g.argc!=3 ) usage("whatis NAME");
zName = g.argv[2];
rid = symbolic_name_to_rid(zName, 0);
if( rid<0 ){
Stmt q;
int cnt = 0;
fossil_print("Ambiguous artifact name prefix: %s\n", zName);
| | | 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 |
if( g.argc!=3 ) usage("whatis NAME");
zName = g.argv[2];
rid = symbolic_name_to_rid(zName, 0);
if( rid<0 ){
Stmt q;
int cnt = 0;
fossil_print("Ambiguous artifact name prefix: %s\n", zName);
db_prepare(&q,
"SELECT rid FROM blob WHERE uuid>=lower(%Q) AND uuid<(lower(%Q)||'z')",
zName, zName
);
while( db_step(&q)==SQLITE_ROW ){
if( cnt++ ) fossil_print("%.79c\n", '-');
whatis_rid(db_column_int(&q, 0), verboseFlag);
}
|
| ︙ | ︙ |