aboutsummaryrefslogtreecommitdiffstats
path: root/smime/lib/e-pkcs12.c
diff options
context:
space:
mode:
Diffstat (limited to 'smime/lib/e-pkcs12.c')
-rw-r--r--smime/lib/e-pkcs12.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/smime/lib/e-pkcs12.c b/smime/lib/e-pkcs12.c
index 3cf2cb6479..98fe181345 100644
--- a/smime/lib/e-pkcs12.c
+++ b/smime/lib/e-pkcs12.c
@@ -160,7 +160,7 @@ prompt_for_password (gchar *title,
SECITEM_AllocItem (NULL, pwd, sizeof (gunichar2) * (len + 1));
- outptr = pwd->data;
+ outptr = pwd->data;
while (inptr && (c = (gunichar2) (g_utf8_get_char (inptr) & 0xffff))) {
inptr = g_utf8_next_char (inptr);
c = GUINT16_TO_BE (c);
@@ -358,7 +358,7 @@ nickname_collision (SECItem *oldNick,
new_nick = PR_Malloc (sizeof (SECItem));
new_nick->type = siAsciiString;
new_nick->data = (guchar *) nickname;
- new_nick->len = strlen ((gchar *) new_nick->data);
+ new_nick->len = strlen ((gchar *) new_nick->data);
return new_nick;
}