Check-in [b714ab1ea7]
Not logged in
Overview

SHA1 Hash:b714ab1ea7c6756f4e80e6ca825f857a14311dfe
Date: 2008-05-07 12:15:14
User: drh
Comment:Add the --proxy option to the commit and update commands.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/checkin.c from [b8e054206a] to [a39c0a7df2].

@@ -335,10 +335,11 @@
   Blob muuid;            /* Manifest uuid */
   Blob mcksum;           /* Self-checksum on the manifest */
   Blob cksum1, cksum2;   /* Before and after commit checksums */
   Blob cksum1b;          /* Checksum recorded in the manifest */
 
+  url_proxy_options();
   noSign = find_option("nosign","",0)!=0;
   zComment = find_option("comment","m",1);
   forceFlag = find_option("force", "f", 0)!=0;
   db_must_be_within_tree();
   noSign = db_get_int("omitsign", 0)|noSign;

Modified src/update.c from [70dcd36640] to [8e9fd979cf].

@@ -54,10 +54,11 @@
   int tid=0;            /* Target version - version we are changing to */
   Stmt q;
   int latestFlag;       /* Pick the latest version if true */
   int forceFlag;        /* True force the update */
 
+  url_proxy_options();
   latestFlag = find_option("latest",0, 0)!=0;
   forceFlag = find_option("force","f",0)!=0;
   if( g.argc!=3 && g.argc!=2 ){
     usage("?VERSION?");
   }