diff options
author | Ady <ady-sf@hotmail.com> | 2015-11-15 09:04:09 -0500 |
---|---|---|
committer | Gene Cumm <gene.cumm@gmail.com> | 2015-11-15 09:04:39 -0500 |
commit | 3793cc1547f73b1e119e57822ba8046ca38c43a8 (patch) | |
tree | becff8df17a36a075034df64159633a678193578 /extlinux | |
parent | 82aac76005b7b19f48b42cbcb192dab6d17b6b05 (diff) | |
download | syslinux-3793cc1547f73b1e119e57822ba8046ca38c43a8.tar.gz syslinux-3793cc1547f73b1e119e57822ba8046ca38c43a8.tar.xz syslinux-3793cc1547f73b1e119e57822ba8046ca38c43a8.zip |
extlinux/main.c: comment typo fixes
Some typo fixes in extlinux/main.c.
None of them effects code execution.
Signed-off-by: Geert Stappers <stappers@stappers.nl>
Diffstat (limited to 'extlinux')
-rw-r--r-- | extlinux/main.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/extlinux/main.c b/extlinux/main.c index 6871fb15..26eb43c7 100644 --- a/extlinux/main.c +++ b/extlinux/main.c @@ -14,7 +14,7 @@ /* * extlinux.c * - * Install the syslinux boot block on an fat, ntfs, ext2/3/4, btrfs, xfs, + * Install the syslinux boot block on a fat, ntfs, ext2/3/4, btrfs, xfs, * and ufs1/2 filesystem. */ @@ -598,9 +598,9 @@ bail: return 1; } -/* btrfs has to install the ldlinux.sys in the first 64K blank area, which - is not managered by btrfs tree, so actually this is not installed as files. - since the cow feature of btrfs will move the ldlinux.sys every where */ +/* btrfs has to install ldlinux.sys in the first 64K blank area, which + is not managed by btrfs tree, so actually this is not installed as a file, + since the cow feature of btrfs would move the ldlinux.sys file everywhere. */ int btrfs_install_file(const char *path, int devfd, struct stat *rst) { char *file; @@ -662,7 +662,7 @@ int btrfs_install_file(const char *path, int devfd, struct stat *rst) * Due to historical reasons (SGI IRIX's design of disk layouts), the first * sector in the primary AG on XFS filesystems contains the superblock, which is * a problem with bootloaders that rely on BIOSes (that load VBRs which are - * (located in the first sector of the partition). + * located in the first sector of the partition). * * Thus, we need to handle this issue, otherwise Syslinux will damage the XFS's * superblock. |