- remove v0 swap space support [Karel Zak]
- zap bootbits [Karel Zak]
more:
- - dont use a.out.h [Mike Frysinger]
+ - don't use a.out.h [Mike Frysinger]
- minor fixes to magic() [James Youngman]
mount:
- Add strictatime support [Matthew Garrett]
- add --all-targets [Karel Zak]
- add -R, --recursive option [Dave Reisner]
- add note about namespaces too --all-targets [Karel Zak]
- - allways return MOUNT_EX_* [Karel Zak]
+ - always return MOUNT_EX_* [Karel Zak]
- clean --recursive [Karel Zak]
- improve --recursive docs [Karel Zak]
- make usage() translator friendly [Sami Kerola]
- assigned value is never read [clang-analyzer] [Sami Kerola]
column:
- dereference of null pointer [clang-analyzer] [Sami Kerola]
- - use variable lenght printf field width to wprint blanks [Sami Kerola]
+ - use variable length printf field width to wprint blanks [Sami Kerola]
cytune:
- fix glush typo in cytune [Rafael Ferreira]
dmesg:
- fix warning when compiled --without-ncurses [Karel Zak]
- guarantee space for multibyte [Karel Zak]
- make output redirection more efficient [Sami Kerola]
- - use variable lenght printf field width to print blanks [Sami Kerola]
+ - use variable length printf field width to print blanks [Sami Kerola]
mount:
- (deprecated) fix typo tailed->failed [Yuri Chornoivan]
- add notes about UUIDs to the man page [Karel Zak]
- add extra checks to XFS prober [Karel Zak]
- cleanup internal return codes [Karel Zak]
- comparing an array to null is not useful [coverity scan] [Karel Zak]
- - convert GPT attributes to host endianess [Karel Zak]
+ - convert GPT attributes to host endianness [Karel Zak]
- correct the return values in squashfs probe [David Shea]
- detect alone PMBR [Karel Zak]
- detect squashfs 3 vs 4 [Ruediger Meier]
- (gpt) add /home GUID [Karel Zak]
- (gpt) allow to work with hybrid GPT [Karel Zak]
- (gpt) fix last LBA code for S_ISREG [Karel Zak]
- - (gpt) implement 'fix order' commnad [Karel Zak]
+ - (gpt) implement 'fix order' command [Karel Zak]
- (gpt) improve and cleanup recovery code [Karel Zak]
- (gpt) initialize last_lba, cleanup pa->{start,size} usage [Karel Zak]
- (gpt) recover from corrupted primary/backup PT [Karel Zak]
- allow to add or override test suite options [Ruediger Meier]
- avoid executing dirname(1) command [Sami Kerola]
- cal do not let --week=<num> to adjust requested month [Sami Kerola]
- - cal take account week numbers when determing month lenght [Sami Kerola]
+ - cal take account week numbers when determing month length [Sami Kerola]
- cal(1) is year is limited to signed 32 bit value [Sami Kerola]
- call ts_init_env as early as possible [Ruediger Meier]
- check /proc availability, and go-around if it is incomplete [Sami Kerola]
- fix two paths of the v2.20-ReleaseNotes [Benno Schulenberg]
- fix two spellings in man page of logger [Benno Schulenberg]
- fix typos [Karel Zak]
- - fix-up man-pages flaged by checkmans.sh [J William Piggott]
+ - fix-up man-pages flagged by checkmans.sh [J William Piggott]
- give the man page of utmpdump the proper User Commands header [Benno Schulenberg]
- improve some wordings in the man page of mount [Benno Schulenberg]
- improve some wordings on the man page of wipefs [Benno Schulenberg]
- persistent_clock_is_local [J William Piggott]
- persistent_clock_is_local MAN [J William Piggott]
- remove automatic ISA fallback [J William Piggott]
- - remove referal to deprecated keyboard interface [Sami Kerola]
+ - remove referral to deprecated keyboard interface [Sami Kerola]
- update man page for v2.26 rc [JWP]
- update man-page for directisa change [J William Piggott]
- use fabs() instead abs() when argument is double [Sami Kerola]
- GSM0710 support, add intro modem command [Karel Zak]
- add fallback for N_GSM0710 [Karel Zak]
lib:
- - fix crc32 and crc64 interger overflows [AddressSanitizer] [Sami Kerola]
+ - fix crc32 and crc64 integer overflows [AddressSanitizer] [Sami Kerola]
- remove xgetpass() [Sami Kerola]
lib/blkdev:
- report correct disk size on GNU/kFreeBSD. Thanks Tuco. [Robert Millan]
- (gpt) check header size before verify CRC [Karel Zak]
- (gpt) fix "MidnightBSD UFS" UUID [Karel Zak]
- (gpt) fix LE usage [Karel Zak]
- - (gpt) fix attributes endianess [Ruediger Meier]
+ - (gpt) fix attributes endianness [Ruediger Meier]
- (gpt) fix check for beginning of protective partition [Michael Marineau]
- (gpt) fix end sector calculation on resize [Karel Zak]
- (gpt) fix label pointer usage [smatch scan] [Karel Zak]
* fdisk: fix default SGI volume header size (Eric Sandeen)
* fstab.c: use strsignal() instead of sys_siglist[]
* hwclock: use <sys/io.h> when available on i386
-* hwclock: dont try KDGHWCLK on archs other than __m68k__
+* hwclock: don't try KDGHWCLK on archs other than __m68k__
* sfdisk: correct typo in __attribute__used nonsense
* sfdisk: use PACKED on __arm__ (Jeroen Dobbelaere)
* sfdisk: fix warning printout
if (!co)
goto done;
- /* set colum header color */
+ /* set column header color */
if (bold)
scols_cell_set_color(scols_column_get_header(co), bold);
}
* @lc: context
* @flags: LOOPDEV_FL_* flags
*
- * Initilize loop handler.
+ * Initialize loop handler.
*
* We have two sets of the flags:
*
struct timespec ts;
# ifdef CLOCK_MONOTONIC_RAW
- /* Linux specific, cant slew */
+ /* Linux specific, can't slew */
if (!(ret = clock_gettime(CLOCK_MONOTONIC_RAW, &ts))) {
# else
if (!(ret = clock_gettime(CLOCK_MONOTONIC, &ts))) {
}
/* Note that value data is always terminated by zero to keep things robust,
- * this extra zero is not count to the value lenght. It's caller responsibility
- * to set proper value lenght (for strings we count terminator to the lenght,
+ * this extra zero is not count to the value length. It's caller responsibility
+ * to set proper value length (for strings we count terminator to the length,
* for binary data it's without terminator).
*/
int blkid_probe_value_set_data(struct blkid_prval *v,
goto done;
}
- /* Be paranoid and check agains on-disk setting rather than against libfdisk cxt */
+ /* Be paranoid and check against on-disk setting rather than against libfdisk cxt */
if (user_l > le64_to_cpu(pheader->last_usable_lba)) {
fdisk_warnx(cxt, _("The last usable GPT sector is %ju, but %ju is requested."),
le64_to_cpu(pheader->last_usable_lba), user_l);
*
* Note that we don't remove "ro" from the first syscall (kernel silently
* ignores this flags for bind operation) -- maybe one day kernel will support
- * read-only binds in one step and then all will be done by the firts mount(2) and the
+ * read-only binds in one step and then all will be done by the first mount(2) and the
* second remount will be noop...
*/
static int init_robind(struct libmnt_context *cxt)
*
* @whint = 0..1 : relative width, percent of terminal width
*
- * @whint = 1..N : absolute width, empty colum will be truncated to
+ * @whint = 1..N : absolute width, empty column will be truncated to
* the column header width
*
* @whint = 1..N
close(STDOUT_FILENO);
close(STDERR_FILENO);
- signal(SIGHUP, SIG_IGN); /* so vhangup() wont kill us */
+ signal(SIGHUP, SIG_IGN); /* so vhangup() won't kill us */
vhangup();
signal(SIGHUP, SIG_DFL);
#endif /* __linux__ */
/*
- * Search below /dev for the characer device in `dev_t comparedev' variable.
+ * Search below /dev for the character device in `dev_t comparedev' variable.
*/
static
#ifdef __GNUC__
struct lsblk {
struct libscols_table *table; /* output table */
- struct libscols_column *sort_col;/* sort output by this colum */
+ struct libscols_column *sort_col;/* sort output by this column */
int sort_id;
unsigned int all_devices:1; /* print all devices, including empty */
* Create AF_UNIX, SOCK_STREAM socket and bind to @socket_path
*
* If @will_fork is true, then make sure the descriptor
- * of the socket is >2, so that it wont be later closed
+ * of the socket is >2, so that it won't be later closed
* during create_daemon().
*
* Return file descriptor corresponding to created socket.
/*
* The script(1) is usually faster than shell, so it's good idea to wait until
* the previous message is has been already read by shell from slave before we
- * wrate to master. This is necessary expecially for EOF situation when we can
+ * wrate to master. This is necessary especially for EOF situation when we can
* send EOF to master before shell is fully initialized, to workaround this
* problem we wait until slave is empty. For example:
*
Units: cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
-Nonexistant file
+Nonexistent file
fdisk: cannot open _a_file_that_does_not_exist_: No such file or directory
Too small file
fdisk: cannot open oddinput.toosmall: Inappropriate ioctl for device
#set -x
-# BSD disklabel depends on sector/offset and endianess. We convert the md5sums
+# BSD disklabel depends on sector/offset and endianness. We convert the md5sums
# into the most common values (little endian, BSD_LABELSECTOR = 1,
# BSD_LABELOFFSET = 0) so that they can be easily compared to the expected
# ones.
# TEST_IMAGE_NAME has absolute path, and is by definition different on each computer, we need to sed it away
$TS_CMD_FDISK -c=dos -u=cylinders -l ${TEST_IMAGE_NAME} 2>&1 | sed -e "s/${TEST_IMAGE_NAME//\//\\/}/testimage/" >> $TS_OUTPUT
-ts_log "Nonexistant file" # this originally does absolutely nothing
+ts_log "Nonexistent file" # this originally does absolutely nothing
$TS_CMD_FDISK -c=dos -u=cylinders -l _a_file_that_does_not_exist_ >> $TS_OUTPUT 2>&1
ts_log "Too small file" # same here