diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index 8c61b6dfc66a0d04cc1e3ccd3b8ba6090b25061f..e0463b49eaa3535b8aebae54dbe3af6f6f99174f 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -416,7 +416,7 @@ static int hls_window(AVFormatContext *s, int last)
 
     set_http_options(&options, hls);
     snprintf(temp_filename, sizeof(temp_filename), use_rename ? "%s.tmp" : "%s", s->filename);
-    if ((ret = s->io_open(s, &out, temp_filename, AVIO_FLAG_WRITE, NULL)) < 0)
+    if ((ret = s->io_open(s, &out, temp_filename, AVIO_FLAG_WRITE, &options)) < 0)
         goto fail;
 
     for (en = hls->segments; en; en = en->next) {