From 392c40f90b8ca566ccd6f573754df2a6801acd12 Mon Sep 17 00:00:00 2001 From: Antoni Sawicki Date: Mon, 28 Sep 2020 22:37:06 -0700 Subject: fix remove directory split by . (dot) --- fileio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fileio.c b/fileio.c index 1d27e3f..24a6fc0 100644 --- a/fileio.c +++ b/fileio.c @@ -525,7 +525,7 @@ int re_dir_up(char *vdir) { char tmp[sizeof(wp.virt_dirname)]={0}; strcpy(tmp, vdir); - len=strsplit(tmp, &dirs, "/."); + len=strsplit(tmp, &dirs, "/"); for(n=0; n