diff options
author | Lennart Poettering <lennart@poettering.net> | 2021-11-05 15:30:36 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2021-11-06 00:27:34 +0100 |
commit | 84f261853c46807bccded121be96916e388ff4da (patch) | |
tree | 6ae56dda86308a0b666986700039be389e354110 /src/shared/user-record-show.c | |
parent | test: wait until `lvm-activate-$vgroup.service` finishes (diff) | |
download | systemd-84f261853c46807bccded121be96916e388ff4da.tar.xz systemd-84f261853c46807bccded121be96916e388ff4da.zip |
user-record: show CIFS extra mount options, in output too
Follow-up for 4c2ee5c7f26fda41d7eb1250c61c85cc869a90de
Diffstat (limited to '')
-rw-r--r-- | src/shared/user-record-show.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shared/user-record-show.c b/src/shared/user-record-show.c index 0873336f58..b7ea7e9f07 100644 --- a/src/shared/user-record-show.c +++ b/src/shared/user-record-show.c @@ -307,6 +307,9 @@ void user_record_show(UserRecord *hr, bool show_full_group_info) { if (hr->cifs_service) printf("CIFS Service: %s\n", hr->cifs_service); + + if (hr->cifs_extra_mount_options) + printf("CIFS MntOpts: %s\n", hr->cifs_extra_mount_options); } if (hr->cifs_user_name) |