Fix typo in cd9660 functionname cd9660_setup_boot_volume_descritpor ->

cd9660_setup_boot_volume_descriptor.

Interestingly the same typo was used in 3 files!
This commit is contained in:
reinoud 2008-07-27 10:29:32 +00:00
parent e012f27d4d
commit 01c0b5bf89
3 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: cd9660.c,v 1.20 2008/05/10 19:00:07 skrll Exp $ */
/* $NetBSD: cd9660.c,v 1.21 2008/07/27 10:29:32 reinoud Exp $ */
/*
* Copyright (c) 2005 Daniel Watt, Walter Deignan, Ryan Gabrys, Alan
@ -103,7 +103,7 @@
#include <sys/cdefs.h>
#if defined(__RCSID) && !defined(__lint)
__RCSID("$NetBSD: cd9660.c,v 1.20 2008/05/10 19:00:07 skrll Exp $");
__RCSID("$NetBSD: cd9660.c,v 1.21 2008/07/27 10:29:32 reinoud Exp $");
#endif /* !__lint */
#include <string.h>
@ -751,7 +751,7 @@ cd9660_setup_volume_descriptors(void)
t->sector = 17;
if (diskStructure.verbose_level > 0)
printf("Setting up boot volume descriptor\n");
cd9660_setup_boot_volume_descritpor(t);
cd9660_setup_boot_volume_descriptor(t);
sector++;
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: cd9660.h,v 1.11 2008/05/10 19:00:07 skrll Exp $ */
/* $NetBSD: cd9660.h,v 1.12 2008/07/27 10:29:32 reinoud Exp $ */
/*
* Copyright (c) 2005 Daniel Watt, Walter Deignan, Ryan Gabrys, Alan
@ -334,7 +334,7 @@ int cd9660_write_boot(FILE *);
int cd9660_add_boot_disk(const char *);
int cd9660_eltorito_add_boot_option(const char *, const char *);
int cd9660_setup_boot(int);
int cd9660_setup_boot_volume_descritpor(volume_descriptor *);
int cd9660_setup_boot_volume_descriptor(volume_descriptor *);
/*** Write Functions ***/

View File

@ -1,4 +1,4 @@
/* $NetBSD: cd9660_eltorito.c,v 1.11 2006/04/22 17:38:20 christos Exp $ */
/* $NetBSD: cd9660_eltorito.c,v 1.12 2008/07/27 10:29:32 reinoud Exp $ */
/*
* Copyright (c) 2005 Daniel Watt, Walter Deignan, Ryan Gabrys, Alan
@ -36,7 +36,7 @@
#include <sys/cdefs.h>
#if defined(__RCSID) && !defined(__lint)
__RCSID("$NetBSD: cd9660_eltorito.c,v 1.11 2006/04/22 17:38:20 christos Exp $");
__RCSID("$NetBSD: cd9660_eltorito.c,v 1.12 2008/07/27 10:29:32 reinoud Exp $");
#endif /* !__lint */
#ifdef DEBUG
@ -484,7 +484,7 @@ cd9660_setup_boot(int first_sector)
}
int
cd9660_setup_boot_volume_descritpor(volume_descriptor *bvd)
cd9660_setup_boot_volume_descriptor(volume_descriptor *bvd)
{
boot_volume_descriptor *bvdData =
(boot_volume_descriptor*)bvd->volumeDescriptorData;