Commit 731efe54 authored by Rafaël Carré's avatar Rafaël Carré

http: psz_dir is not meant to be a const

parent 97c54331
......@@ -224,7 +224,7 @@ mvar_t *E_(mvar_InputVarSetNew)( intf_thread_t *p_intf, char *name,
/** This function creates a set variable representing the files of the psz_dir
* directory */
mvar_t *E_(mvar_FileSetNew)( intf_thread_t *p_intf, char *name,
const char *psz_dir );
char *psz_dir );
/** This function creates a set variable representing the VLM streams */
mvar_t *E_(mvar_VlmSetNew)( char *name, vlm_t *vlm );
......
......@@ -506,7 +506,7 @@ mvar_t *E_(mvar_HttpdInfoSetNew)( char *name, httpd_t *p_httpd, int i_type )
#endif
mvar_t *E_(mvar_FileSetNew)( intf_thread_t *p_intf, char *name,
const char *psz_dir )
char *psz_dir )
{
mvar_t *s = E_(mvar_New)( name, "set" );
#ifdef HAVE_SYS_STAT_H
......
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