Diff
Not logged in

Differences From:

File src/db.c part of check-in [e3c529c2f0] - Merge in clone and sync changes. Fix a bug in undelta. by anonymous on 2007-07-30 16:31:11. Also file src/db.c part of check-in [3a25b68390] - Only request the password one time on a push or pull. by drh on 2007-07-30 16:35:16. [view]

To:

File src/db.c part of check-in [8dbee6731d] - The push, pull, and sync commands remember the last server and reuse it if the URL argument is omitted. Sync via network only now. by drh on 2007-07-31 01:34:45. [view]

@@ -587,9 +587,9 @@
 **
 ** Error out if the repository cannot be opened.
 */
 void db_find_and_open_repository(void){
-  char *zRep = find_option("repository", "R", 1);
+  const char *zRep = find_option("repository", "R", 1);
   if( zRep==0 ){
     if( db_open_local()==0 ){
       goto rep_not_found;
     }