1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-02 22:38:02 +02: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:
Werner Koch 2015-11-26 18:10:05 +01:00
parent 61941a9849
commit 82f6abb480
No known key found for this signature in database
GPG Key ID: E3FDFF218E45B72B

View File

@ -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;
}