aboutsummaryrefslogtreecommitdiff
path: root/src/playlist_song.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/playlist_song.h')
-rw-r--r--src/playlist_song.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/playlist_song.h b/src/playlist_song.h
index 5a2e4c2b..29335e5a 100644
--- a/src/playlist_song.h
+++ b/src/playlist_song.h
@@ -20,12 +20,18 @@
#ifndef MPD_PLAYLIST_SONG_H
#define MPD_PLAYLIST_SONG_H
+#include <stdbool.h>
+
/**
* Verifies the song, returns NULL if it is unsafe. Translate the
* song to a new song object within the database, if it is a local
* file. The old song object is freed.
+ *
+ * @param secure if true, then local files are only allowed if they
+ * are relative to base_uri
*/
struct song *
-playlist_check_translate_song(struct song *song, const char *base_uri);
+playlist_check_translate_song(struct song *song, const char *base_uri,
+ bool secure);
#endif