Fossil SCM
Move proxy-related fields after the other url-related fields.
Commit
45107553c06bb22f7f61a89f376e8a3ac8fd9612
Parent
1bd561c3ba5457b…
1 file changed
+3
-3
+3
-3
| --- src/main.c | ||
| +++ src/main.c | ||
| @@ -179,16 +179,16 @@ | ||
| 179 | 179 | int urlDfltPort; /* The default port for the given protocol */ |
| 180 | 180 | char *urlPath; /* Pathname for http: */ |
| 181 | 181 | char *urlUser; /* User id for http: */ |
| 182 | 182 | char *urlPasswd; /* Password for http: */ |
| 183 | 183 | char *urlCanonical; /* Canonical representation of the URL */ |
| 184 | - int useProxy; /* Used to remember that a proxy is in use */ | |
| 185 | - char *proxyUrlPath; | |
| 186 | - int proxyOrigPort; /* Tunneled port number for https through proxy */ | |
| 187 | 184 | char *urlProxyAuth; /* Proxy-Authorizer: string */ |
| 188 | 185 | char *urlFossil; /* The fossil query parameter on ssh: */ |
| 189 | 186 | unsigned urlFlags; /* Boolean flags controlling URL processing */ |
| 187 | + int useProxy; /* Used to remember that a proxy is in use */ | |
| 188 | + char *proxyUrlPath; | |
| 189 | + int proxyOrigPort; /* Tunneled port number for https through proxy */ | |
| 190 | 190 | |
| 191 | 191 | const char *zLogin; /* Login name. "" if not logged in. */ |
| 192 | 192 | const char *zSSLIdentity; /* Value of --ssl-identity option, filename of |
| 193 | 193 | ** SSL client identity */ |
| 194 | 194 | int useLocalauth; /* No login required if from 127.0.0.1 */ |
| 195 | 195 |
| --- src/main.c | |
| +++ src/main.c | |
| @@ -179,16 +179,16 @@ | |
| 179 | int urlDfltPort; /* The default port for the given protocol */ |
| 180 | char *urlPath; /* Pathname for http: */ |
| 181 | char *urlUser; /* User id for http: */ |
| 182 | char *urlPasswd; /* Password for http: */ |
| 183 | char *urlCanonical; /* Canonical representation of the URL */ |
| 184 | int useProxy; /* Used to remember that a proxy is in use */ |
| 185 | char *proxyUrlPath; |
| 186 | int proxyOrigPort; /* Tunneled port number for https through proxy */ |
| 187 | char *urlProxyAuth; /* Proxy-Authorizer: string */ |
| 188 | char *urlFossil; /* The fossil query parameter on ssh: */ |
| 189 | unsigned urlFlags; /* Boolean flags controlling URL processing */ |
| 190 | |
| 191 | const char *zLogin; /* Login name. "" if not logged in. */ |
| 192 | const char *zSSLIdentity; /* Value of --ssl-identity option, filename of |
| 193 | ** SSL client identity */ |
| 194 | int useLocalauth; /* No login required if from 127.0.0.1 */ |
| 195 |
| --- src/main.c | |
| +++ src/main.c | |
| @@ -179,16 +179,16 @@ | |
| 179 | int urlDfltPort; /* The default port for the given protocol */ |
| 180 | char *urlPath; /* Pathname for http: */ |
| 181 | char *urlUser; /* User id for http: */ |
| 182 | char *urlPasswd; /* Password for http: */ |
| 183 | char *urlCanonical; /* Canonical representation of the URL */ |
| 184 | char *urlProxyAuth; /* Proxy-Authorizer: string */ |
| 185 | char *urlFossil; /* The fossil query parameter on ssh: */ |
| 186 | unsigned urlFlags; /* Boolean flags controlling URL processing */ |
| 187 | int useProxy; /* Used to remember that a proxy is in use */ |
| 188 | char *proxyUrlPath; |
| 189 | int proxyOrigPort; /* Tunneled port number for https through proxy */ |
| 190 | |
| 191 | const char *zLogin; /* Login name. "" if not logged in. */ |
| 192 | const char *zSSLIdentity; /* Value of --ssl-identity option, filename of |
| 193 | ** SSL client identity */ |
| 194 | int useLocalauth; /* No login required if from 127.0.0.1 */ |
| 195 |