Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove accidentally included line of code. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | ben-security |
Files: | files | file ages | folders |
SHA1: |
0bed863b697c95870eef54199061af7f |
User & Date: | ben 2011-05-29 12:53:47.869 |
Context
2011-06-02
| ||
19:31 | Merge SSL client certificate support from ben-security branch ... (check-in: 397f434a user: ben tags: ben-testing) | |
2011-05-29
| ||
12:53 | Remove accidentally included line of code. ... (Closed-Leaf check-in: 0bed863b user: ben tags: ben-security) | |
12:49 | Support for client side SSL certificates for extra authentication to https servers. Adds --ssl-identity command line option and ssl-identity setting to specify the filename of a identity file containing a PEM encoded certificate and private key. ... (check-in: e06ea26e user: ben tags: ben-security) | |
Changes
Changes to src/clone.c.
︙ | ︙ | |||
45 46 47 48 49 50 51 | void clone_cmd(void){ char *zPassword; const char *zDefaultUser; /* Optional name of the default user */ int nErr = 0; int bPrivate; /* Also clone private branches */ bPrivate = find_option("private",0,0)!=0; | < | 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | void clone_cmd(void){ char *zPassword; const char *zDefaultUser; /* Optional name of the default user */ int nErr = 0; int bPrivate; /* Also clone private branches */ bPrivate = find_option("private",0,0)!=0; url_proxy_options(); if( g.argc < 4 ){ usage("?OPTIONS? FILE-OR-URL NEW-REPOSITORY"); } db_open_config(0); if( file_size(g.argv[3])>0 ){ fossil_panic("file already exists: %s", g.argv[3]); |
︙ | ︙ |