From 2f82fa2e8edfd2afe8065463359de3dafaa86686 Mon Sep 17 00:00:00 2001 From: Roman Arutyunyan Date: Sun, 31 Aug 2014 14:48:48 +0400 Subject: [PATCH] fixed hls key path --- hls/ngx_rtmp_hls_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hls/ngx_rtmp_hls_module.c b/hls/ngx_rtmp_hls_module.c index 8ac3845..2371728 100644 --- a/hls/ngx_rtmp_hls_module.c +++ b/hls/ngx_rtmp_hls_module.c @@ -2359,7 +2359,7 @@ ngx_rtmp_hls_merge_app_conf(ngx_conf_t *cf, void *parent, void *child) } conf->slot->manager = ngx_rtmp_hls_cleanup; - conf->slot->name = conf->path; + conf->slot->name = conf->keys_path; conf->slot->data = cleanup; conf->slot->conf_file = cf->conf_file->file.name.data; conf->slot->line = cf->conf_file->line;