From: Lennart Poettering Date: Fri, 5 Nov 2021 14:30:36 +0000 (+0100) Subject: user-record: show CIFS extra mount options, in output too X-Git-Tag: v250-rc1~343 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=84f261853c46807bccded121be96916e388ff4da;p=thirdparty%2Fsystemd.git user-record: show CIFS extra mount options, in output too Follow-up for 4c2ee5c7f26fda41d7eb1250c61c85cc869a90de --- diff --git a/src/shared/user-record-show.c b/src/shared/user-record-show.c index 0873336f589..b7ea7e9f07d 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)