]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* include/grub/file.h (not_easly_seekable): Rename to ...
authorColin Watson <cjwatson@ubuntu.com>
Tue, 8 Feb 2011 13:21:13 +0000 (13:21 +0000)
committerColin Watson <cjwatson@ubuntu.com>
Tue, 8 Feb 2011 13:21:13 +0000 (13:21 +0000)
(not_easily_seekable): ... this.  Update all users.

ChangeLog
grub-core/fs/i386/pc/pxe.c
grub-core/io/bufio.c
grub-core/io/gzio.c
grub-core/io/xzio.c
include/grub/file.h

index 019a6746c4228af2b73fa34f58c0145ff0ac065c..d3325ac6b2dc01524bd714041adee2c46a54a595 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-02-08  Colin Watson  <cjwatson@ubuntu.com>
+
+       * include/grub/file.h (not_easly_seekable): Rename to ...
+       (not_easily_seekable): ... this.  Update all users.
+
 2011-01-28  Colin Watson  <cjwatson@ubuntu.com>
 
        * docs/grub.texi (Making a GRUB bootable CD-ROM): Update to describe
index e2b53d637cc330d26dd2e44f336e7b53782a0865..a3b055f3d610a6d926b0f2501e4c870b4dc35d38 100644 (file)
@@ -281,7 +281,7 @@ grub_pxefs_open (struct grub_file *file, const char *name)
     }
 
   file->data = data;
-  file->not_easly_seekable = 1;
+  file->not_easily_seekable = 1;
   grub_memcpy (file_int, file, sizeof (struct grub_file));
   curr_file = file_int;
 
index 8a72ecd79ba545646b12aebf4f76b6868c3022f6..891fb78e9226d356d64218e1142d28d9982a3491 100644 (file)
@@ -74,7 +74,7 @@ grub_bufio_open (grub_file_t io, int size)
   file->data = bufio;
   file->read_hook = 0;
   file->fs = &grub_bufio_fs;
-  file->not_easly_seekable = io->not_easly_seekable;
+  file->not_easily_seekable = io->not_easily_seekable;
 
   return file;
 }
index f563d7b92c55882dbb227addbe66343cd3210f4f..47df23833af184469ecba004f403d558116486b7 100644 (file)
@@ -1136,7 +1136,7 @@ grub_gzio_open (grub_file_t io)
   file->data = gzio;
   file->read_hook = 0;
   file->fs = &grub_gzio_fs;
-  file->not_easly_seekable = 1;
+  file->not_easily_seekable = 1;
 
   if (! test_header (file))
     {
index 37be1790fe2c5a15fd9b398c6636dd490b784bb3..3daf6a3fe6ce4cd9d5257394361192e5fd32d4f0 100644 (file)
@@ -200,7 +200,7 @@ grub_xzio_open (grub_file_t io)
   file->read_hook = 0;
   file->fs = &grub_xzio_fs;
   file->size = GRUB_FILE_SIZE_UNKNOWN;
-  file->not_easly_seekable = 1;
+  file->not_easily_seekable = 1;
 
   if (grub_file_tell (xzio->file) != 0)
     grub_file_seek (xzio->file, 0);
index 72cd45468855bf4835c16eb262a6182c783a3558..3adb1706f520bcadc3094cd78e09dd98db4989e9 100644 (file)
@@ -39,8 +39,8 @@ struct grub_file
   /* The file size.  */
   grub_off_t size;
 
-  /* If file is not easly seekable. Should be set by underlying layer.  */
-  int not_easly_seekable;
+  /* If file is not easily seekable. Should be set by underlying layer.  */
+  int not_easily_seekable;
 
   /* Filesystem-specific data.  */
   void *data;
@@ -123,7 +123,7 @@ grub_file_tell (const grub_file_t file)
 static inline int
 grub_file_seekable (const grub_file_t file)
 {
-  return !file->not_easly_seekable;
+  return !file->not_easily_seekable;
 }
 
 #endif /* ! GRUB_FILE_HEADER */