From: William A. Rowe Jr Date: Mon, 25 Mar 2002 19:05:59 +0000 (+0000) Subject: -i and -u were deprecated some time ago, they still work in 1.3, but X-Git-Tag: 2.0.34~152 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=71a2c46459ddeea516a2688b4ce54a2f10625e50;p=apache -i and -u were deprecated some time ago, they still work in 1.3, but shouldn't be expected to work in 2.0. Replacement command line options are -k install|uninstall git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94161 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index 95c68cc073..e800bae9b1 100644 --- a/server/mpm/winnt/mpm_winnt.c +++ b/server/mpm/winnt/mpm_winnt.c @@ -2034,16 +2034,6 @@ void winnt_rewrite_args(process_rec *process) case 'k': signal_arg = optarg; break; - case 'i': - ap_log_error(APLOG_MARK,APLOG_WARNING, 0, NULL, - "-i is deprecated. Use -k install."); - signal_arg = "install"; - break; - case 'u': - ap_log_error(APLOG_MARK,APLOG_WARNING, 0, NULL, - "-u is deprecated. Use -k uninstall."); - signal_arg = "uninstall"; - break; default: *(const char **)apr_array_push(mpm_new_argv) = apr_pstrdup(process->pool, optbuf);