Fossil

Check-in [e1151363]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Make sure the "update" command always works the same with or without the -v option. Ticket [40a7d777a465].
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: e11513631f9ca7fe07bfacddeca6e585287669b7
User & Date: drh 2011-04-18 18:25:16.798
Context
2011-04-18
19:17
Fix to the multi-repository name parser for CGI. ... (check-in: 71a1c7b2 user: drh tags: trunk)
18:25
Make sure the "update" command always works the same with or without the -v option. Ticket [40a7d777a465]. ... (check-in: e1151363 user: drh tags: trunk)
12:45
Update the download page generator script to also generate a page showing the SHA1 checksums of all build products. ... (check-in: cea065c7 user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/update.c.
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
      }
    }
    tid = db_int(0, "SELECT rid FROM leaves, event"
                    " WHERE event.objid=leaves.rid"
                    " ORDER BY event.mtime DESC"); 
  }

  if( !verboseFlag && (tid==vid)) return;  /* Nothing to update */
  db_begin_transaction();
  vfile_check_signature(vid, 1, 0);
  if( !nochangeFlag && !internalUpdate ) undo_begin();
  load_vfile_from_rid(tid);

  /*
  ** The record.fn field is used to match files against each other.  The







|







175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
      }
    }
    tid = db_int(0, "SELECT rid FROM leaves, event"
                    " WHERE event.objid=leaves.rid"
                    " ORDER BY event.mtime DESC"); 
  }

  if( tid==vid ) return;  /* Nothing to update */
  db_begin_transaction();
  vfile_check_signature(vid, 1, 0);
  if( !nochangeFlag && !internalUpdate ) undo_begin();
  load_vfile_from_rid(tid);

  /*
  ** The record.fn field is used to match files against each other.  The