Ticket Change Details
Not logged in
Overview

Artifact ID: 85dea41161646baae292bbb5882ebdc82ebc06f9
Ticket: 0d1a4fe14f1fb6ee208276bb69e7ab5948048c97
fossil configuration push doesn't honor proxy
User & Date: anonymous 2010-08-26 07:30:55
Changes

  1. Appended to comment:
    
    
    <hr><i>anonymous claiming to be urmil added on 2010-08-26 07:30:55:</i><br>
    Here is the patch to fix this:
    <verbatim>
    --- src/configure.c
    +++ src/configure.c
    @@ -459,10 +459,11 @@
           zPw = db_get("last-sync-pw", 0);
         }
         url_parse(zServer);
         if( g.urlPasswd==0 && zPw ) g.urlPasswd = mprintf("%s", zPw);
         user_select();
    +    url_enable_proxy("via proxy: ");
         if( strncmp(zMethod, "push", n)==0 ){
           client_sync(0,0,0,0,mask);
         }else{
           client_sync(0,0,0,mask,0);
         }
    </verbatim>