mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Merge branch 'STABLE-BRANCH-2-2' into master
-- Signed-off-by: Werner Koch <wk@gnupg.org> Conflicts: NEWS - include release info from 2.2.1 configure.ac - keep master.
This commit is contained in:
commit
cd2d758f3f
15 changed files with 513 additions and 114 deletions
|
@ -3529,7 +3529,14 @@ proc_parameter_file (ctrl_t ctrl, struct para_data_s *para, const char *fname,
|
|||
if( s2 )
|
||||
p = stpcpy(stpcpy(stpcpy(p," ("), s2 ),")");
|
||||
if( s3 )
|
||||
p = stpcpy(stpcpy(stpcpy(p," <"), s3 ),">");
|
||||
{
|
||||
/* If we have only the email part, do not add the space
|
||||
* and the angle brackets. */
|
||||
if (*r->u.value)
|
||||
p = stpcpy(stpcpy(stpcpy(p," <"), s3 ),">");
|
||||
else
|
||||
p = stpcpy (p, s3);
|
||||
}
|
||||
append_to_parameter (para, r);
|
||||
have_user_id=1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue