Commit 29e0d176 authored by Julien 'Lta' BALLET's avatar Julien 'Lta' BALLET Committed by Jean-Baptiste Kempf

stream.c: Add debug message when selecting readdir stream method

This is to be consistent with the rest of the file
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 6e9b9942
...@@ -435,6 +435,8 @@ stream_t *stream_AccessNew( access_t *p_access, char **ppsz_list ) ...@@ -435,6 +435,8 @@ stream_t *stream_AccessNew( access_t *p_access, char **ppsz_list )
} }
else else
{ {
msg_Dbg( s, "Using readdir method for AStream*" );
assert( p_sys->method == STREAM_METHOD_READDIR ); assert( p_sys->method == STREAM_METHOD_READDIR );
s->pf_readdir = AStreamReadDir; s->pf_readdir = AStreamReadDir;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment