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
1 changed files with 4 additions and 4 deletions

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