summaryrefslogtreecommitdiff
path: root/daemon
diff options
context:
space:
mode:
authorMaximilian Hess <mail@maximilianhess.com>2017-03-07 09:50:48 +0100
committerStef Walter <stefw@gnome.org>2017-03-29 08:38:17 +0200
commit126068474134e16c09709725b0e19caa9e517aac (patch)
treee0cafefbe09726ca47f604b25f852c16e6db8feb /daemon
parent3d2665573146bc8eb04816c6be343bd1cdb39324 (diff)
downloadgnome-keyring-126068474134e16c09709725b0e19caa9e517aac.tar.gz
Fixed two typos in messages
https://bugzilla.gnome.org/show_bug.cgi?id=779744
Diffstat (limited to 'daemon')
-rw-r--r--daemon/gkd-capability.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/daemon/gkd-capability.c b/daemon/gkd-capability.c
index cc3d2a44..9afe3039 100644
--- a/daemon/gkd-capability.c
+++ b/daemon/gkd-capability.c
@@ -80,11 +80,11 @@ gkd_capability_obtain_capability_and_drop_privileges (void)
early_error ("error getting process capabilities");
break;
case CAPNG_NONE:
- early_warning ("insufficient process capabilities, unsecure memory might get used");
+ early_warning ("insufficient process capabilities, insecure memory might get used");
break;
case CAPNG_PARTIAL: /* File system based capabilities */
if (!capng_have_capability (CAPNG_EFFECTIVE, CAP_IPC_LOCK)) {
- early_warning ("insufficient process capabilities, unsecure memory might get used");
+ early_warning ("insufficient process capabilities, insecure memory might get used");
/* Drop all capabilities */
capng_clear (CAPNG_SELECT_BOTH);
capng_apply (CAPNG_SELECT_BOTH);