summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorStef Walter <stefw@collabora.co.uk>2010-12-13 17:26:51 +0000
committerStef Walter <stefw@collabora.co.uk>2010-12-13 17:26:51 +0000
commit5470f81b5a0213ef4a1c46aa96ec969bc956cd5c (patch)
treec5c7f13f0a14f6957d99799e6eacba9dbdda0273 /tool
parent769beac2fbaec97c1c1088c32e0d62704f13523c (diff)
downloadgnome-keyring-5470f81b5a0213ef4a1c46aa96ec969bc956cd5c.tar.gz
Use term 'distrust' instead of 'untrust'
Suggested by Yaron Sheffer and describes the concept much more aptly.
Diffstat (limited to 'tool')
-rw-r--r--tool/gkr-tool-trust.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tool/gkr-tool-trust.c b/tool/gkr-tool-trust.c
index 967a3c16..a407d332 100644
--- a/tool/gkr-tool-trust.c
+++ b/tool/gkr-tool-trust.c
@@ -119,8 +119,8 @@ get_pinned_certificate (GcrCertificate *certificate, GcrPurpose purpose)
g_print ("%s: no trust exception\n", string);
else if (trust == GCR_TRUST_TRUSTED)
g_print ("%s: certificate is explicitly trusted\n", string);
- else if (trust == GCR_TRUST_UNTRUSTED)
- g_print ("%s: certificate is explicitly untrusted\n", string);
+ else if (trust == GCR_TRUST_DISTRUSTED)
+ g_print ("%s: certificate is explicitly distrusted\n", string);
return 0;
}
@@ -142,8 +142,8 @@ set_certificate_exception (GcrCertificate *certificate, GcrPurpose purpose, GcrT
g_print ("%s: no trust exception\n", string);
else if (trust == GCR_TRUST_TRUSTED)
g_print ("%s: certificate is explicitly trusted\n", string);
- else if (trust == GCR_TRUST_UNTRUSTED)
- g_print ("%s: certificate is explicitly untrusted\n", string);
+ else if (trust == GCR_TRUST_DISTRUSTED)
+ g_print ("%s: certificate is explicitly distrusted\n", string);
}
return 0;