From d79fcea6d71fbfbc50901fada8f88f44149fb502 Mon Sep 17 00:00:00 2001 From: Michael Rash Date: Fri, 17 Jan 2014 21:10:36 -0500 Subject: [PATCH] [client] minor bug fix to add --spoof-source synonym for --spoof-src to match man page --- client/cmd_opts.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/cmd_opts.h b/client/cmd_opts.h index 0d689cf7..d9787e03 100644 --- a/client/cmd_opts.h +++ b/client/cmd_opts.h @@ -124,7 +124,8 @@ static struct option cmd_opts[] = {"nat-rand-port", 0, NULL, NAT_RAND_PORT}, {"server-port", 1, NULL, 'p'}, {"server-proto", 1, NULL, 'P'}, - {"spoof-src", 1, NULL, 'Q'}, + {"spoof-source", 1, NULL, 'Q'}, + {"spoof-src", 1, NULL, 'Q'}, /* synonym */ {"rc-file", 1, NULL, RC_FILE_PATH}, {"rand-port", 0, NULL, 'r'}, {"resolve-ip-http", 0, NULL, 'R'},