From 3d4f80ae165bd3e18680b7f7e2a1945ecb361171 Mon Sep 17 00:00:00 2001 From: "flatcap.org!flatcap" Date: Thu, 9 Jan 2003 16:30:59 +0000 Subject: [PATCH] sync with Paul a typos left over from the big rename (Logical change 1.82) --- libntfs/bootsect.c | 4 +++- libntfs/runlist.c | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/libntfs/bootsect.c b/libntfs/bootsect.c index 900c4615..e8b76cdb 100644 --- a/libntfs/bootsect.c +++ b/libntfs/bootsect.c @@ -24,6 +24,8 @@ #include #include +#include "compat.h" + #include "bootsect.h" #include "debug.h" @@ -190,7 +192,7 @@ int ntfs_boot_sector_parse(ntfs_volume *vol, const NTFS_BOOT_SECTOR *bs) /* * The bounds checks on mft_lcn and mft_mirr_lcn (i.e. them being * below or equal the number_of_clusters) really belong in the - * is_boot_sector_ntfs but in this way we can just do this once. + * ntfs_boot_sector_is_ntfs but in this way we can just do this once. */ sectors_per_cluster = bs->bpb.sectors_per_cluster; Dprintf("NumberOfSectors = %Li\n", sle64_to_cpu(bs->number_of_sectors)); diff --git a/libntfs/runlist.c b/libntfs/runlist.c index b5c02faa..bfd01a5a 100644 --- a/libntfs/runlist.c +++ b/libntfs/runlist.c @@ -25,6 +25,8 @@ #include #include +#include "compat.h" + #include "types.h" #include "attrib.h" #include "volume.h" @@ -534,7 +536,7 @@ runlist_element *ntfs_runlists_merge(runlist_element *drl, /* Can't have an entirely unmapped source runlist. */ if (!srl[si].length) { - Dputs("Eeek! ntfs_merge_runlists() received entirely " + Dputs("Eeek! ntfs_runlists_merge() received entirely " "unmapped source runlist."); errno = EINVAL; return NULL;