Change fs functions to add fs_ prefix
This avoid conflict with gnulib Signed-off-by: Vladimir Serbinenko <phcoder@google.com> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
This commit is contained in:
parent
08452decc8
commit
afeb7b4bd9
55 changed files with 260 additions and 259 deletions
|
@ -370,7 +370,7 @@ match_files (const char *prefix, const char *suffix, const char *end,
|
|||
else
|
||||
path = ctx.dir;
|
||||
|
||||
if (fs->dir (dev, path, match_files_iter, &ctx))
|
||||
if (fs->fs_dir (dev, path, match_files_iter, &ctx))
|
||||
goto fail;
|
||||
|
||||
grub_free (ctx.dir);
|
||||
|
@ -452,7 +452,7 @@ check_file (const char *dir, const char *basename)
|
|||
else
|
||||
path = dir;
|
||||
|
||||
fs->dir (dev, path[0] ? path : "/", check_file_iter, &ctx);
|
||||
fs->fs_dir (dev, path[0] ? path : "/", check_file_iter, &ctx);
|
||||
if (grub_errno == 0 && basename[0] == 0)
|
||||
ctx.found = 1;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue