From c91aad49695fc0d5ff1dd07a4459dc7fbe9bdbc0 Mon Sep 17 00:00:00 2001 From: Beniamino Galvani Date: Wed, 24 Apr 2019 15:21:34 +0200 Subject: cli: hide certificate blobs unless --show-secrets is passed This restores the behavior before commit 99711579ed43. Fixes: 99711579ed43 ('cli: add property type for 802-1x certificate properties (pt2)'). --- clients/common/nm-meta-setting-desc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clients/common/nm-meta-setting-desc.c b/clients/common/nm-meta-setting-desc.c index c7a7fe54bb..cc3557d6fa 100644 --- a/clients/common/nm-meta-setting-desc.c +++ b/clients/common/nm-meta-setting-desc.c @@ -2216,8 +2216,7 @@ _get_fcn_cert_8021x (ARGS_GET_FCN) switch (vtable->scheme_func (s_8021X)) { case NM_SETTING_802_1X_CK_SCHEME_BLOB: - if ( vtable->is_secret - && !NM_FLAGS_HAS (get_flags, NM_META_ACCESSOR_GET_FLAGS_SHOW_SECRETS)) + if (!NM_FLAGS_HAS (get_flags, NM_META_ACCESSOR_GET_FLAGS_SHOW_SECRETS)) return _get_text_hidden (get_type); str = bytes_to_string (vtable->blob_func (s_8021X)); break; -- cgit v1.2.1