mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-02 12:01:32 +01:00
gpg: Fix line end in error message
* g10/keyedit.c (menu_adduid): Move linefeed character to the format string. -- This fixes a literal '\n' in the error message and a missing line feed after the error message.
This commit is contained in:
parent
e529c54fe3
commit
8b3a24e517
@ -4270,7 +4270,7 @@ menu_adduid (ctrl_t ctrl, kbnode_t pub_keyblock,
|
||||
if (uidstring)
|
||||
{
|
||||
write_status_error ("adduid", gpg_error (304));
|
||||
log_error ("%s", _("Such a user ID already exists on this key!\n"));
|
||||
log_error ("%s\n", _("Such a user ID already exists on this key!"));
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user