[Pkg-gnupg-commit] [gnupg2] 186/241: g13: Fix commit 1a045b13.

Daniel Kahn Gillmor dkg at fifthhorseman.net
Wed Dec 9 20:32:14 UTC 2015


This is an automated email from the git hooks/post-receive script.

dkg pushed a commit to branch master
in repository gnupg2.

commit 82f6abb4807c89388052ab442368d9e09fb84aea
Author: Werner Koch <wk at gnupg.org>
Date:   Thu Nov 26 18:10:05 2015 +0100

    g13: Fix commit 1a045b13.
    
    * g13/g13.c (main): Use existsing function.
    
    Signed-off-by: Werner Koch <wk at gnupg.org>
---
 g13/g13.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/g13/g13.c b/g13/g13.c
index 7fe207a..7a8d775 100644
--- a/g13/g13.c
+++ b/g13/g13.c
@@ -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;
   }
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-gnupg/gnupg2.git



More information about the Pkg-gnupg-commit mailing list