aboutsummaryrefslogtreecommitdiffstats
path: root/g10/getkey.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2004-09-24 20:34:38 +0000
committerDavid Shaw <[email protected]>2004-09-24 20:34:38 +0000
commit4d26ab92cc852f73e97ff4f977f2efd1f6808e14 (patch)
tree09ee9cbb6119e60870929c668963f3d2164f4845 /g10/getkey.c
parent* keyedit.c (keyedit_menu), gpgv.c (agent_scd_getattr (stub)), keygen.c (diff)
downloadgnupg-4d26ab92cc852f73e97ff4f977f2efd1f6808e14.tar.gz
gnupg-4d26ab92cc852f73e97ff4f977f2efd1f6808e14.zip
* main.h: Create S2K_DIGEST_ALGO macro so we do not need to always set
opt.s2k_digest_algo. This helps fix a problem with PGP 2.x encrypted symmetric messages. Change all callers (encode.c, g10.c, keyedit.c, keygen.c, passphrase.c, sign.c). * armor.c, cardglue.c, getkey.c, import.c, keygen.c: Be consistent in some more quoted strings. Always use 'user ID', not 'user id', "quotes" for user IDs, etc.
Diffstat (limited to 'g10/getkey.c')
-rw-r--r--g10/getkey.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/getkey.c b/g10/getkey.c
index 8676758f5..a3a1be8c3 100644
--- a/g10/getkey.c
+++ b/g10/getkey.c
@@ -183,7 +183,7 @@ get_primary_uid ( KBNODE keyblock, size_t *uidlen )
}
/* fixme: returning translatable constants instead of a user ID is
* not good because they are probably not utf-8 encoded. */
- s = _("[User id not found]");
+ s = _("[User ID not found]");
*uidlen = strlen (s);
return s;
}
@@ -2688,7 +2688,7 @@ get_user_id( u32 *keyid, size_t *rn )
}
}
} while( ++pass < 2 && !get_pubkey( NULL, keyid ) );
- p = m_strdup( _("[User id not found]") );
+ p = m_strdup( _("[User ID not found]") );
*rn = strlen(p);
return p;
}