Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the error output for command-line option errors on the "fossil http" command. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
648dc3e7046d657ae4a0ad2cbbf976b9 |
| User & Date: | drh 2015-05-14 18:31:20.174 |
Context
|
2015-05-14
| ||
| 21:00 | Remove an unused variable. check-in: 99f8337b66 user: drh tags: trunk | |
| 18:31 | Fix the error output for command-line option errors on the "fossil http" command. check-in: 648dc3e704 user: drh tags: trunk | |
| 18:25 | Expand the /hash-collisions report to show hash prefix collisions on just check-ins in addition to overall hash collisions. check-in: 60af057415 user: drh tags: trunk | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
2174 2175 2176 2177 2178 2179 2180 |
if( zAltBase ) set_base_url(zAltBase);
if( find_option("https",0,0)!=0 ){
zIpAddr = fossil_getenv("REMOTE_HOST"); /* From stunnel */
cgi_replace_parameter("HTTPS","on");
}
zHost = find_option("host", 0, 1);
if( zHost ) cgi_replace_parameter("HTTP_HOST",zHost);
| < > | 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 |
if( zAltBase ) set_base_url(zAltBase);
if( find_option("https",0,0)!=0 ){
zIpAddr = fossil_getenv("REMOTE_HOST"); /* From stunnel */
cgi_replace_parameter("HTTPS","on");
}
zHost = find_option("host", 0, 1);
if( zHost ) cgi_replace_parameter("HTTP_HOST",zHost);
/* We should be done with options.. */
verify_all_options();
if( g.argc!=2 && g.argc!=3 && g.argc!=5 && g.argc!=6 ){
fossil_fatal("no repository specified");
}
g.cgiOutput = 1;
g.fullHttpReply = 1;
if( g.argc>=5 ){
g.httpIn = fossil_fopen(g.argv[2], "rb");
g.httpOut = fossil_fopen(g.argv[3], "wb");
zIpAddr = g.argv[4];
find_server_repository(5, 0);
}else{
|
| ︙ | ︙ |