summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBeniamino Galvani <bgalvani@redhat.com>2019-04-24 15:21:34 +0200
committerBeniamino Galvani <bgalvani@redhat.com>2019-04-29 11:23:56 +0200
commit7be988f005386ddc3eca5bb0d7a6347b59448dd3 (patch)
tree37f11335e28908ca979f697eea3586512a91275c
parent2ab532c85a89e4163f8a2dccc81aafa34971b2d8 (diff)
downloadNetworkManager-bg/rh1702199.tar.gz
cli: hide certificate blobs unless --show-secrets is passedbg/rh1702199
This restores the behavior before commit 99711579ed43. Fixes: 99711579ed43 ('cli: add property type for 802-1x certificate properties (pt2)').
-rw-r--r--clients/common/nm-meta-setting-desc.c3
1 files changed, 1 insertions, 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;