about summary refs log tree commit diff
path: root/bounce.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-08-25 18:39:49 -0400
committerJune McEnroe <june@causal.agency>2020-08-25 18:39:49 -0400
commitd8559c63605c45d166115ede7c561b2ffc612fc8 (patch)
treea77a7c52c131c26136137e2c47b891461e799d51 /bounce.c
parentDocument configuration and data file search (diff)
downloadpounce-d8559c63605c45d166115ede7c561b2ffc612fc8.tar.gz
pounce-d8559c63605c45d166115ede7c561b2ffc612fc8.zip
Remove deprecated option names
The next release will be 2.0 so these can be removed now.
Diffstat (limited to '')
-rw-r--r--bounce.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/bounce.c b/bounce.c
index 109153b..95e3711 100644
--- a/bounce.c
+++ b/bounce.c
@@ -335,16 +335,6 @@ int main(int argc, char *argv[]) {
 		{ .val = 'w', .name = "pass", required_argument },
 		{ .val = 'x', .name = "hash", no_argument },
 		{ .val = 'y', .name = "away", required_argument },
-
-		// Deprecated names:
-		{ .val = 'A', .name = "client-ca", required_argument },
-		{ .val = 'C', .name = "cert", required_argument },
-		{ .val = 'H', .name = "bind-host", required_argument },
-		{ .val = 'K', .name = "priv", required_argument },
-		{ .val = 'P', .name = "bind-port", required_argument },
-		{ .val = 'U', .name = "bind-path", required_argument },
-		{ .val = 'W', .name = "client-pass", required_argument },
-
 		{0},
 	};
 	char opts[2 * ARRAY_LEN(options)];