mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
(vfs_path_from_str_deprecated_parser, vfs_path_from_str_uri_parser): remove unused flags argument.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
8715c41a47
commit
3424622d5a
@ -367,14 +367,13 @@ vfs_path_is_str_path_deprecated (const char *path_str)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
static vfs_path_t *
|
static vfs_path_t *
|
||||||
vfs_path_from_str_deprecated_parser (char *path, vfs_path_flag_t flags)
|
vfs_path_from_str_deprecated_parser (char *path)
|
||||||
{
|
{
|
||||||
vfs_path_t *vpath;
|
vfs_path_t *vpath;
|
||||||
vfs_path_element_t *element;
|
vfs_path_element_t *element;
|
||||||
struct vfs_class *class;
|
struct vfs_class *class;
|
||||||
const char *local, *op;
|
const char *local, *op;
|
||||||
|
|
||||||
(void) flags;
|
|
||||||
vpath = vfs_path_new ();
|
vpath = vfs_path_new ();
|
||||||
|
|
||||||
while ((class = _vfs_split_with_semi_skip_count (path, &local, &op, 0)) != NULL)
|
while ((class = _vfs_split_with_semi_skip_count (path, &local, &op, 0)) != NULL)
|
||||||
@ -432,14 +431,12 @@ vfs_path_from_str_deprecated_parser (char *path, vfs_path_flag_t flags)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
static vfs_path_t *
|
static vfs_path_t *
|
||||||
vfs_path_from_str_uri_parser (char *path, vfs_path_flag_t flags)
|
vfs_path_from_str_uri_parser (char *path)
|
||||||
{
|
{
|
||||||
vfs_path_t *vpath;
|
vfs_path_t *vpath;
|
||||||
vfs_path_element_t *element;
|
vfs_path_element_t *element;
|
||||||
char *url_delimiter;
|
char *url_delimiter;
|
||||||
|
|
||||||
(void) flags;
|
|
||||||
|
|
||||||
vpath = vfs_path_new ();
|
vpath = vfs_path_new ();
|
||||||
vpath->relative = path != NULL && !IS_PATH_SEP (*path);
|
vpath->relative = path != NULL && !IS_PATH_SEP (*path);
|
||||||
|
|
||||||
@ -740,9 +737,9 @@ vfs_path_from_str_flags (const char *path_str, vfs_path_flag_t flags)
|
|||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if ((flags & VPF_USE_DEPRECATED_PARSER) != 0 && vfs_path_is_str_path_deprecated (path))
|
if ((flags & VPF_USE_DEPRECATED_PARSER) != 0 && vfs_path_is_str_path_deprecated (path))
|
||||||
vpath = vfs_path_from_str_deprecated_parser (path, flags);
|
vpath = vfs_path_from_str_deprecated_parser (path);
|
||||||
else
|
else
|
||||||
vpath = vfs_path_from_str_uri_parser (path, flags);
|
vpath = vfs_path_from_str_uri_parser (path);
|
||||||
|
|
||||||
vpath->str = vfs_path_to_str_flags (vpath, 0, flags);
|
vpath->str = vfs_path_to_str_flags (vpath, 0, flags);
|
||||||
g_free (path);
|
g_free (path);
|
||||||
|
Loading…
Reference in New Issue
Block a user