mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-30 16:17:02 +01:00
g13: Fix commit 1a045b13.
* g13/g13.c (main): Use existsing function. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
61941a9849
commit
82f6abb480
@ -580,10 +580,10 @@ main ( int argc, char **argv)
|
||||
/* XXX Construct GPG arguments. */
|
||||
{
|
||||
strlist_t last;
|
||||
last = strlist_append (&opt.gpg_arguments, "-z");
|
||||
last = strlist_append (&last, "0");
|
||||
last = strlist_append (&last, "--trust-model");
|
||||
last = strlist_append (&last, "always");
|
||||
last = append_to_strlist (&opt.gpg_arguments, "-z");
|
||||
last = append_to_strlist (&last, "0");
|
||||
last = append_to_strlist (&last, "--trust-model");
|
||||
last = append_to_strlist (&last, "always");
|
||||
(void) last;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user