From f730023e88351c8ee4da2ac0407cf48ca76c3c0e Mon Sep 17 00:00:00 2001 From: Unbit Date: Mon, 23 Sep 2013 09:18:43 +0200 Subject: [PATCH] fixed a typo --- core/uwsgi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/uwsgi.c b/core/uwsgi.c index 9f198d1e..60f7f9e7 100644 --- a/core/uwsgi.c +++ b/core/uwsgi.c @@ -406,7 +406,7 @@ static struct uwsgi_option uwsgi_base_options[] = { {"ini", required_argument, 0, "load config from ini file", uwsgi_opt_load_ini, NULL, UWSGI_OPT_IMMEDIATE}, #ifdef UWSGI_YAML {"yaml", required_argument, 'y', "load config from yaml file", uwsgi_opt_load_yml, NULL, UWSGI_OPT_IMMEDIATE}, - {"yal", required_argument, 'y', "load config from yaml file", uwsgi_opt_load_yml, NULL, UWSGI_OPT_IMMEDIATE}, + {"yml", required_argument, 'y', "load config from yaml file", uwsgi_opt_load_yml, NULL, UWSGI_OPT_IMMEDIATE}, #endif #ifdef UWSGI_JSON {"json", required_argument, 'j', "load config from json file", uwsgi_opt_load_json, NULL, UWSGI_OPT_IMMEDIATE},