From 1b1a85cc6b4981842992a6719f950b25c6012a4e Mon Sep 17 00:00:00 2001 From: dmiller Date: Mon, 3 Feb 2020 20:18:44 +0000 Subject: [PATCH] Clarify proxy type support in Ncat server. Fixes #1901 --- ncat/ncat_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ncat/ncat_main.c b/ncat/ncat_main.c index 9e2583dcd..ee06f0130 100644 --- a/ncat/ncat_main.c +++ b/ncat/ncat_main.c @@ -819,7 +819,7 @@ int main(int argc, char *argv[]) if (!o.listen) bye("Proxy type (--proxy-type) specified without proxy address (--proxy)."); if (strcmp(o.proxytype, "http")) - bye("Invalid proxy type \"%s\".", o.proxytype); + bye("Invalid proxy type \"%s\"; Ncat proxy server only supports \"http\".", o.proxytype); } }