mirror of
https://gitlab.com/cryptsetup/cryptsetup.git
synced 2025-12-05 16:00:05 +01:00
Fix several minor spelling errors found by Lintian
* lib/setup.c: miliseconds -> milliseconds * lib/utils_wipe.c: Unsuported -> Unsupported * man/crypsetup.8: implicitely -> implicitly * man/veritysetup.8: verion -> version * python/pycryptsetup.c: miliseconds -> milliseconds
This commit is contained in:
@@ -131,7 +131,7 @@ int crypt_wipe(struct device *device,
|
||||
ssize_t written;
|
||||
|
||||
if (!size || size % SECTOR_SIZE || (size > MAXIMUM_WIPE_BYTES)) {
|
||||
log_dbg("Unsuported wipe size for device %s: %ld.",
|
||||
log_dbg("Unsupported wipe size for device %s: %ld.",
|
||||
device_path(device), (unsigned long)size);
|
||||
return -EINVAL;
|
||||
}
|
||||
@@ -186,7 +186,7 @@ int crypt_wipe(struct device *device,
|
||||
written = _crypt_wipe_random(devfd, bsize, buffer, offset, size);
|
||||
break;
|
||||
default:
|
||||
log_dbg("Unsuported wipe type requested: (%d)", type);
|
||||
log_dbg("Unsupported wipe type requested: (%d)", type);
|
||||
written = -1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user