From ef4ee87fed80167334289340c86216c757155484 Mon Sep 17 00:00:00 2001 From: Unbit Date: Sun, 8 Jun 2014 06:35:44 +0200 Subject: [PATCH] fixed shortcut for ssl-socket --- core/uwsgi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/uwsgi.c b/core/uwsgi.c index d7d8e8eb..4f495ed4 100644 --- a/core/uwsgi.c +++ b/core/uwsgi.c @@ -39,8 +39,8 @@ static struct uwsgi_option uwsgi_base_options[] = { {"socket", required_argument, 's', "bind to the specified UNIX/TCP socket using default protocol", uwsgi_opt_add_socket, NULL, 0}, {"uwsgi-socket", required_argument, 's', "bind to the specified UNIX/TCP socket using uwsgi protocol", uwsgi_opt_add_socket, "uwsgi", 0}, #ifdef UWSGI_SSL - {"suwsgi-socket", required_argument, 's', "bind to the specified UNIX/TCP socket using uwsgi protocol over SSL", uwsgi_opt_add_ssl_socket, "suwsgi", 0}, - {"ssl-socket", required_argument, 's', "bind to the specified UNIX/TCP socket using uwsgi protocol over SSL", uwsgi_opt_add_ssl_socket, "suwsgi", 0}, + {"suwsgi-socket", required_argument, 0, "bind to the specified UNIX/TCP socket using uwsgi protocol over SSL", uwsgi_opt_add_ssl_socket, "suwsgi", 0}, + {"ssl-socket", required_argument, 0, "bind to the specified UNIX/TCP socket using uwsgi protocol over SSL", uwsgi_opt_add_ssl_socket, "suwsgi", 0}, #endif {"http-socket", required_argument, 0, "bind to the specified UNIX/TCP socket using HTTP protocol", uwsgi_opt_add_socket, "http", 0},