diff options
| author | Paul Smith <psmith@gnu.org> | 1999-07-21 05:53:23 +0000 |
|---|---|---|
| committer | Paul Smith <psmith@gnu.org> | 1999-07-21 05:53:23 +0000 |
| commit | 588da9812e055fbceb900c350ab406f97eccbf37 (patch) | |
| tree | cc291944695d7e922ac93c5ae293289349acd7d5 /vpath.c | |
| parent | 73846549f62b832ca6ff761ad3640a86d3b32c86 (diff) | |
| download | gunmake-588da9812e055fbceb900c350ab406f97eccbf37.tar.gz | |
* Add configure option to enable dmalloc library.
* Various code cleanups.
Diffstat (limited to 'vpath.c')
| -rw-r--r-- | vpath.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |
