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
c6725996a9
commit
ad4bfeec5c
55 changed files with 247 additions and 246 deletions
|
@ -1706,13 +1706,13 @@ grub_net_fs_read (grub_file_t file, char *buf, grub_size_t len)
|
|||
static struct grub_fs grub_net_fs =
|
||||
{
|
||||
.name = "netfs",
|
||||
.dir = grub_net_fs_dir,
|
||||
.open = grub_net_fs_open,
|
||||
.read = grub_net_fs_read,
|
||||
.close = grub_net_fs_close,
|
||||
.label = NULL,
|
||||
.uuid = NULL,
|
||||
.mtime = NULL,
|
||||
.fs_dir = grub_net_fs_dir,
|
||||
.fs_open = grub_net_fs_open,
|
||||
.fs_read = grub_net_fs_read,
|
||||
.fs_close = grub_net_fs_close,
|
||||
.fs_label = NULL,
|
||||
.fs_uuid = NULL,
|
||||
.fs_mtime = NULL,
|
||||
};
|
||||
|
||||
static grub_err_t
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue