]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - cmdline.c
Document -proxycmd in help and man pages.
[PuTTY.git] / cmdline.c
index e6b69073a2e236a3121e9649d07657e42bacd2af..f288ed629ee837272998ec554cb45e3bbfbc3552 100644 (file)
--- a/cmdline.c
+++ b/cmdline.c
@@ -609,6 +609,18 @@ int cmdline_process_param(const char *p, char *value,
        conf_set_str(conf, CONF_proxy_telnet_command, value);
     }
 
+#ifdef _WINDOWS
+    /*
+     * Cross-tool options only available on Windows.
+     */
+    if (!strcmp(p, "-restrict-acl") || !strcmp(p, "-restrict_acl") ||
+        !strcmp(p, "-restrictacl")) {
+       RETURN(1);
+        restrict_process_acl();
+        restricted_acl = TRUE;
+    }
+#endif
+
     return ret;                               /* unrecognised */
 }