[gnome-keyring] Use 'log in to' rather than 'log into'



commit b76506d2e401a6e91ffe816c14d4e26e60a0f7fd
Author: Stef Walter <stef memberwebs com>
Date:   Sun Feb 7 17:41:10 2010 +0000

    Use 'log in to' rather than 'log into'
    
    Fixed after heads up from the gnome-doc folks.

 daemon/dbus/gkd-secret-service.c     |    2 +-
 daemon/dbus/gkd-secret-unlock.c      |    2 +-
 daemon/ssh-agent/gkd-ssh-agent-ops.c |    2 +-
 gp11/gp11-session.c                  |    6 +++---
 4 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/daemon/dbus/gkd-secret-service.c b/daemon/dbus/gkd-secret-service.c
index 3d5bd19..6c282de 100644
--- a/daemon/dbus/gkd-secret-service.c
+++ b/daemon/dbus/gkd-secret-service.c
@@ -1234,7 +1234,7 @@ gkd_secret_service_get_pkcs11_session (GkdSecretService *self, const gchar *call
 		login = info && (info->flags & CKF_LOGIN_REQUIRED);
 		gp11_token_info_free (info);
 		if (login && !gp11_session_login (client->pkcs11_session, CKU_USER, NULL, 0, &error)) {
-			g_warning ("couldn't log into pkcs11 session for secret service: %s",
+			g_warning ("couldn't log in to pkcs11 session for secret service: %s",
 			           error->message);
 			g_clear_error (&error);
 			g_object_unref (client->pkcs11_session);
diff --git a/daemon/dbus/gkd-secret-unlock.c b/daemon/dbus/gkd-secret-unlock.c
index 1df91be..6f182a9 100644
--- a/daemon/dbus/gkd-secret-unlock.c
+++ b/daemon/dbus/gkd-secret-unlock.c
@@ -137,7 +137,7 @@ prepare_unlock_login (GkdSecretUnlock *self)
 	gkd_prompt_set_primary_text (prompt, text);
 
 	if (gkd_login_did_unlock_fail ())
-		text = _("The password you use to log into your computer no longer matches that of your login keyring.");
+		text = _("The password you use to log in to your computer no longer matches that of your login keyring.");
 	else
 		text = _("The login keyring did not get unlocked when you logged into your computer.");
 	gkd_prompt_set_secondary_text (prompt, text);
diff --git a/daemon/ssh-agent/gkd-ssh-agent-ops.c b/daemon/ssh-agent/gkd-ssh-agent-ops.c
index 07ae493..a8d2da7 100644
--- a/daemon/ssh-agent/gkd-ssh-agent-ops.c
+++ b/daemon/ssh-agent/gkd-ssh-agent-ops.c
@@ -72,7 +72,7 @@ login_session (GP11Session *session)
 	/* Log in the session if necessary */
 	if (info->state == CKS_RO_PUBLIC_SESSION || info->state == CKS_RW_PUBLIC_SESSION) {
 		if (!gp11_session_login (session, CKU_USER, NULL, 0, &error)) {
-			g_message ("couldn't log into session: %s", error->message);
+			g_message ("couldn't log in to session: %s", error->message);
 			ret = FALSE;
 		}
 	}
diff --git a/gp11/gp11-session.c b/gp11/gp11-session.c
index 6ebd881..9541d0e 100644
--- a/gp11/gp11-session.c
+++ b/gp11/gp11-session.c
@@ -737,7 +737,7 @@ perform_login (Login *args)
 
 /**
  * gp11_session_login:
- * @self: Log into this session.
+ * @self: Log in to this session.
  * @user_type: The type of login user.
  * @pin: The user's PIN, or NULL for protected authentication path.
  * @n_pin: The length of the PIN.
@@ -757,7 +757,7 @@ gp11_session_login (GP11Session *self, gulong user_type, const guchar *pin,
 
 /**
  * gp11_session_login_full:
- * @self: Log into this session.
+ * @self: Log in to this session.
  * @user_type: The type of login user.
  * @pin: The user's PIN, or NULL for protected authentication path.
  * @n_pin: The length of the PIN.
@@ -780,7 +780,7 @@ gp11_session_login_full (GP11Session *self, gulong user_type, const guchar *pin,
 
 /**
  * gp11_session_login_async:
- * @self: Log into this session.
+ * @self: Log in to this session.
  * @user_type: The type of login user.
  * @pin: The user's PIN, or NULL for protected authentication path.
  * @n_pin: The length of the PIN.



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]