diff options
author | Chris Murphy <cmurf@users.noreply.github.com> | 2020-02-09 23:54:12 -0700 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2020-02-10 19:47:42 +0900 |
commit | d900701eeab4a43b6626256226c68ed00a63962d (patch) | |
tree | 1e75ab7a7a963bf0723de30fbfbc43fac0e9c0de | |
parent | a0be5386168a39337d879a9f7d4bd224a42250f2 (diff) | |
download | systemd-d900701eeab4a43b6626256226c68ed00a63962d.tar.gz |
fix typo in object field
# homectl create hack --fs-type=btrfs
Unexpected object field 'fileSytemType'.
-rw-r--r-- | src/home/homectl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/home/homectl.c b/src/home/homectl.c index d978897e92..19d69c4721 100644 --- a/src/home/homectl.c +++ b/src/home/homectl.c @@ -3275,7 +3275,7 @@ static int parse_argv(int argc, char *argv[]) { const char *field = c == ARG_STORAGE ? "storage" : - c == ARG_FS_TYPE ? "fileSytemType" : + c == ARG_FS_TYPE ? "fileSystemType" : c == ARG_LUKS_CIPHER ? "luksCipher" : c == ARG_LUKS_CIPHER_MODE ? "luksCipherMode" : c == ARG_LUKS_PBKDF_TYPE ? "luksPbkdfType" : |