diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-01-23 01:38:41 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-01-23 01:38:41 -0500 |
commit | bb13dd28686146c07ca9054a95ae19d09b320c8d (patch) | |
tree | c9f84ba3ad709e5757574498579290887a2cc640 /src/relocation.c | |
parent | 74ddda664b9d7e843da3ec8254716c11016007e5 (diff) | |
download | spmc-bb13dd28686146c07ca9054a95ae19d09b320c8d.tar.gz |
fstree() now accepts filter modes SPM_FSTREE_FLT_{NONE,CONTAINS,ENDSWITH,STARTSWITH}
Diffstat (limited to 'src/relocation.c')
-rw-r--r-- | src/relocation.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/relocation.c b/src/relocation.c index 9407036..4dc784f 100644 --- a/src/relocation.c +++ b/src/relocation.c @@ -253,7 +253,7 @@ int prefixes_write(const char *output_file, int mode, char **prefix, const char return -1; } - FSTree *fsdata = fstree(tree, NULL); + FSTree *fsdata = fstree(tree, NULL, SPM_FSTREE_FLT_NONE); if (!fsdata) { fclose(fp); fprintf(SYSERROR); |