From a46cbdcccd7b5f919ff4f9b29442a07722c77d4c Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Sun, 30 Aug 2015 20:34:46 +0000 Subject: [PATCH] Fixed typos reported by J.S.Junior --- cdrskin/cdrskin.1 | 10 +++++----- libburn/libdax_msgs.h | 2 +- libburn/mmc.c | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/cdrskin/cdrskin.1 b/cdrskin/cdrskin.1 index fa784c5..31ff48a 100644 --- a/cdrskin/cdrskin.1 +++ b/cdrskin/cdrskin.1 @@ -237,7 +237,7 @@ of option .B --grow_overwriteable_iso . Without this option or without an ISO-9660 filesystem image present on media, -toc does not return information about the media content and -media get treated as blank regardless wether they hold data or not. +media get treated as blank regardless whether they hold data or not. .br Currently there is no difference between -sao and -tao. If ever, then -tao will be the mode which preserves the current behavior. @@ -360,7 +360,7 @@ Announces that the subsequent tracks are to be burned as audio. The source is supposed to be uncompressed headerless PCM, 44100 Hz, 16 bit, stereo. For little-endian byte order (which is usual on PCs) use option -swab. Unless marked explicitly by option -data, input files with suffix -".wav" are examined wether they have a header in MS-WAVE format confirming +".wav" are examined whether they have a header in MS-WAVE format confirming those parameters and eventually raw audio data get extracted and burned as audio track. Same is done for suffix ".au" and SUN Audio. .br @@ -1404,7 +1404,7 @@ and print its content in the human readable format that is described with option input_sheet_v07t=. .br The program run ends immediately thereafter. -No drive scan will happen and no drive will be aquired. +No drive scan will happen and no drive will be acquired. .br To avoid the cdrskin start message in the output, run: cdrskin textfile_to_v07t=cdtext.dat | grep -v '^cdrskin' @@ -1526,7 +1526,7 @@ fcntl(2). .TP .BI \--drive_not_o_excl Linux specific: Do not ask the operating system to prevent opening busy drives. -Wether this leads to senseful behavior depends on operating system and kernel. +Whether this leads to senseful behavior depends on operating system and kernel. .TP .BI drive_scsi_dev_family= sr | scd | sg Linux specific: Select a SCSI device file family to be scanned for by @@ -1543,7 +1543,7 @@ Linux specific: Try to exclusively reserve device files /dev/srN, /dev/scdM, /dev/sgK of drives. This would be helpful to protect against collisions with program growisofs. Regrettably on Linux kernel 2.4 with ide-scsi emulation this seems not to -work. Wether it becomes helpful with new Linux systems has to be evaluated. +work. Whether it becomes helpful with new Linux systems has to be evaluated. .TP .BI \--fifo_disable Disable fifo despite any fs=. diff --git a/libburn/libdax_msgs.h b/libburn/libdax_msgs.h index 394368b..b181c95 100644 --- a/libburn/libdax_msgs.h +++ b/libburn/libdax_msgs.h @@ -610,7 +610,7 @@ Range "scdbackup" : 0x00020000 to 0x0002ffff 0x000201a6 (FATAL,HIGH) = Lost connection to drive 0x000201a7 (FAILURE,HIGH) = SCSI command yielded host problem 0x000201a8 (FAILURE,HIGH) = SCSI command yielded driver problem - 0x000201a9 (FAILURE,HIGH) = Implausible lenght from GET CONFIGURATION + 0x000201a9 (FAILURE,HIGH) = Implausible length from GET CONFIGURATION libdax_audioxtr: diff --git a/libburn/mmc.c b/libburn/mmc.c index 5835c4b..e79db0e 100644 --- a/libburn/mmc.c +++ b/libburn/mmc.c @@ -2190,7 +2190,7 @@ void mmc_read_disc_info(struct burn_drive *d) if (ret <= 0) return; - /* for now there is no need to inquire the variable lenght part */ + /* for now there is no need to inquire the variable length part */ } @@ -3275,7 +3275,7 @@ void mmc_get_configuration(struct burn_drive *d) if (alloc_len > 4096) { /* MMC-5 6.6.2.1: The maximum is less than 1 KB */ BURN_ALLOC_MEM_VOID(msg, char, 256); - sprintf(msg, "Implausible lenght announcement from SCSI command GET CONFIGURATION: %d", alloc_len); + sprintf(msg, "Implausible length announcement from SCSI command GET CONFIGURATION: %d", alloc_len); libdax_msgs_submit(libdax_messenger, d->global_index, 0x000201a9, LIBDAX_MSGS_SEV_FAILURE, LIBDAX_MSGS_PRIO_ZERO, msg, 0, 0);