Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
1f59701c
Commit
1f59701c
authored
Nov 02, 2014
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v0.18.x' into v0.19.x
parents
054323c2
ec3191f5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
NEWS
NEWS
+9
-0
CurlInputPlugin.cxx
src/input/plugins/CurlInputPlugin.cxx
+1
-1
No files found.
NEWS
View file @
1f59701c
...
...
@@ -101,6 +101,15 @@ ver 0.19 (2014/10/10)
* install systemd unit for socket activation
* Android port
ver 0.18.17 (not yet released)
* playlist
- don't allow empty playlist name
- m3u: recognize the file suffix ".m3u8"
* decoder
- ignore URI query string for plugin detection
- faad: remove workaround for ancient libfaad2 ABI bug
- ffmpeg: recognize MIME type audio/aacp
ver 0.18.16 (2014/09/26)
* fix DSD breakage due to typo in configure.ac
...
...
src/input/plugins/CurlInputPlugin.cxx
View file @
1f59701c
...
...
@@ -723,7 +723,7 @@ CurlInputStream::InitEasy(Error &error)
curl_easy_setopt
(
easy
,
CURLOPT_FOLLOWLOCATION
,
1l
);
curl_easy_setopt
(
easy
,
CURLOPT_NETRC
,
1l
);
curl_easy_setopt
(
easy
,
CURLOPT_MAXREDIRS
,
5l
);
curl_easy_setopt
(
easy
,
CURLOPT_FAILONERROR
,
true
);
curl_easy_setopt
(
easy
,
CURLOPT_FAILONERROR
,
1l
);
curl_easy_setopt
(
easy
,
CURLOPT_ERRORBUFFER
,
error_buffer
);
curl_easy_setopt
(
easy
,
CURLOPT_NOPROGRESS
,
1l
);
curl_easy_setopt
(
easy
,
CURLOPT_NOSIGNAL
,
1l
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment