summaryrefslogtreecommitdiff
path: root/vpath.c
diff options
context:
space:
mode:
Diffstat (limited to 'vpath.c')
-rw-r--r--vpath.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vpath.c b/vpath.c
index 41cc317..62df2a6 100644
--- a/vpath.c
+++ b/vpath.c
@@ -169,7 +169,7 @@ construct_vpath_list (pattern, dirpath)
if (pattern != 0)
{
- pattern = savestring (pattern, strlen (pattern));
+ pattern = xstrdup (pattern);
percent = find_percent (pattern);
}
@@ -324,7 +324,7 @@ gpath_search (file, len)
if (gpaths && (len <= gpaths->maxlen))
for (gp = gpaths->searchpath; *gp != NULL; ++gp)
- if (!strncmp(*gp, file, len) && (*gp)[len] == '\0')
+ if (strneq (*gp, file, len) && (*gp)[len] == '\0')
return 1;
return 0;