diff options
Diffstat (limited to 'src/basic/mountpoint-util.c')
-rw-r--r-- | src/basic/mountpoint-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/basic/mountpoint-util.c b/src/basic/mountpoint-util.c index db36b2f2f6..698ea65d48 100644 --- a/src/basic/mountpoint-util.c +++ b/src/basic/mountpoint-util.c @@ -95,7 +95,7 @@ int name_to_handle_at_loop( /* The buffer was too small. Size the new buffer by what name_to_handle_at() returned. */ n = h->handle_bytes; - /* paranoia: check for overlow (note that .handle_bytes is unsigned only) */ + /* paranoia: check for overflow (note that .handle_bytes is unsigned only) */ if (n > UINT_MAX - offsetof(struct file_handle, f_handle)) return -EOVERFLOW; } @@ -722,7 +722,7 @@ int mount_option_supported(const char *fstype, const char *key, const char *valu _cleanup_close_ int fd = -EBADF; int r; - /* Checks if the specified file system supports a mount option. Returns > 0 if it suppors it, == 0 if + /* Checks if the specified file system supports a mount option. Returns > 0 if it supports it, == 0 if * it does not. Return -EAGAIN if we can't determine it. And any other error otherwise. */ assert(fstype); |