diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-06-14 17:21:12 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-06-14 17:21:12 +0000 |
commit | 180308e6ec525bd051fad5e0e0bfd4bb17442aef (patch) | |
tree | f1e46fff7bc636c9c3d6083c2e79ce8d77675327 /src/htstools.c | |
parent | 90326d5cf6aed6f91ea37e833c4536e248079ff3 (diff) |
Escaping fixes when the final disk filename contains a %
Diffstat (limited to 'src/htstools.c')
-rw-r--r-- | src/htstools.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htstools.c b/src/htstools.c index bb2915d..77fa70e 100644 --- a/src/htstools.c +++ b/src/htstools.c @@ -898,7 +898,7 @@ HTSEXT_API int hts_buildtopindex(httrackp * opt, const char *path, char BIGSTK hname[HTS_URLMAXSIZE * 2]; strcpybuff(hname, sortedElts[i]->name); - escape_check_url(hname); + escape_uri_utf(hname); /* Changed category */ if (strcmp(category, sortedElts[i]->category) != 0) { |