util/UriUtil: strip credentials from smb:// URIs
Closes https://github.com/MusicPlayerDaemon/MPD/issues/910
This commit is contained in:
parent
43c32372e7
commit
a43ee97746
2
NEWS
2
NEWS
|
@ -1,6 +1,8 @@
|
||||||
ver 0.21.25 (not yet released)
|
ver 0.21.25 (not yet released)
|
||||||
* protocol:
|
* protocol:
|
||||||
- fix crash when using "rangeid" while playing
|
- fix crash when using "rangeid" while playing
|
||||||
|
* input
|
||||||
|
- smbclient: don't send credentials to MPD clients
|
||||||
|
|
||||||
ver 0.21.24 (2020/06/10)
|
ver 0.21.24 (2020/06/10)
|
||||||
* protocol
|
* protocol
|
||||||
|
|
|
@ -170,6 +170,7 @@ SkipUriScheme(const char *uri) noexcept
|
||||||
static const char *const schemes[] = {
|
static const char *const schemes[] = {
|
||||||
"http://", "https://",
|
"http://", "https://",
|
||||||
"ftp://",
|
"ftp://",
|
||||||
|
"smb://",
|
||||||
};
|
};
|
||||||
|
|
||||||
for (auto scheme : schemes) {
|
for (auto scheme : schemes) {
|
||||||
|
|
Loading…
Reference in New Issue