| | @@ -550,13 +550,10 @@ |
| 550 | 550 | blob_appendf(&options, " --files-urlenc %T", zFileGlob); |
| 551 | 551 | } |
| 552 | 552 | if( g.useLocalauth ){ |
| 553 | 553 | blob_appendf(&options, " --localauth"); |
| 554 | 554 | } |
| 555 | | - if( g.cgiUpperParamsOk ){ |
| 556 | | - blob_appendf(&options, " --cgiupperok"); |
| 557 | | - } |
| 558 | 555 | if( g.thTrace ){ |
| 559 | 556 | blob_appendf(&options, " --th-trace"); |
| 560 | 557 | } |
| 561 | 558 | if( flags & HTTP_SERVER_REPOLIST ){ |
| 562 | 559 | blob_appendf(&options, " --repolist"); |
| | @@ -987,14 +984,10 @@ |
| 987 | 984 | ** |
| 988 | 985 | ** Enables automatic login if the --localauth option is present |
| 989 | 986 | ** and the "localauth" setting is off and the connection is from |
| 990 | 987 | ** localhost. |
| 991 | 988 | ** |
| 992 | | -** --cgiupperok |
| 993 | | -** |
| 994 | | -** Allows CGI parameter names to begin with an uppercase letter. |
| 995 | | -** |
| 996 | 989 | ** --repolist |
| 997 | 990 | ** |
| 998 | 991 | ** If REPOSITORY is directory, URL "/" lists all repositories. |
| 999 | 992 | ** |
| 1000 | 993 | ** --scgi |
| | @@ -1051,11 +1044,10 @@ |
| 1051 | 1044 | const char *zPassword = find_option("password", "W", 1); |
| 1052 | 1045 | const char *zPort = find_option("port", "P", 1); |
| 1053 | 1046 | const char *zNotFound = find_option("notfound", 0, 1); |
| 1054 | 1047 | const char *zFileGlob = find_option("files", 0, 1); |
| 1055 | 1048 | const char *zLocalAuth = find_option("localauth", 0, 0); |
| 1056 | | - const char *zCgiUpperOk = find_option("cgiupperok", 0, 0); |
| 1057 | 1049 | const char *zRepository = find_repository_option(); |
| 1058 | 1050 | int useSCGI = find_option("scgi", 0, 0)!=0; |
| 1059 | 1051 | int allowRepoList = find_option("repolist",0,0)!=0; |
| 1060 | 1052 | Blob binPath; |
| 1061 | 1053 | |
| | @@ -1106,11 +1098,10 @@ |
| 1106 | 1098 | if( useSCGI ) blob_appendf(&binPath, " --scgi"); |
| 1107 | 1099 | if( allowRepoList ) blob_appendf(&binPath, " --repolist"); |
| 1108 | 1100 | if( zNotFound ) blob_appendf(&binPath, " --notfound \"%s\"", zNotFound); |
| 1109 | 1101 | if( zFileGlob ) blob_appendf(&binPath, " --files-urlenc %T", zFileGlob); |
| 1110 | 1102 | if( zLocalAuth ) blob_append(&binPath, " --localauth", -1); |
| 1111 | | - if( zCgiUpperOk ) blob_append(&binPath, " --cgiupperok", -1); |
| 1112 | 1103 | blob_appendf(&binPath, " \"%s\"", g.zRepositoryName); |
| 1113 | 1104 | /* Create the service. */ |
| 1114 | 1105 | hScm = OpenSCManagerW(NULL, NULL, SC_MANAGER_ALL_ACCESS); |
| 1115 | 1106 | if( !hScm ) winhttp_fatal("create", zSvcName, win32_get_last_errmsg()); |
| 1116 | 1107 | hSvc = CreateServiceW( |
| 1117 | 1108 | |