Blame SOURCES/gnupg-2.0.18-protect-tool-env.patch

9f54a2
diff -u -r gnupg-2.0.18.orig/agent/protect-tool.c gnupg-2.0.18/agent/protect-tool.c
9f54a2
--- gnupg-2.0.18.orig/agent/protect-tool.c	2011-07-22 14:00:44.000000000 +0200
9f54a2
+++ gnupg-2.0.18/agent/protect-tool.c	2012-04-10 22:42:17.397613438 +0200
9f54a2
@@ -102,6 +102,7 @@
9f54a2
 static int opt_status_msg;
9f54a2
 static const char *opt_p12_charset;
9f54a2
 static const char *opt_agent_program; 
9f54a2
+static session_env_t opt_session_env;
9f54a2
 
9f54a2
 static char *get_passphrase (int promptno);
9f54a2
 static void release_passphrase (char *pw);
9f54a2
@@ -1040,6 +1041,7 @@
9f54a2
 
9f54a2
   opt_homedir = default_homedir ();
9f54a2
 
9f54a2
+  opt_session_env = session_env_new ();
9f54a2
 
9f54a2
   pargs.argc = &arg;;
9f54a2
   pargs.argv = &arg;;
9f54a2
@@ -1091,7 +1093,7 @@
9f54a2
                                 opt.verbose,
9f54a2
                                 opt_homedir,
9f54a2
                                 opt_agent_program,
9f54a2
-                                NULL, NULL, NULL);
9f54a2
+                                NULL, NULL, opt_session_env);
9f54a2
 
9f54a2
   if (opt_prompt)
9f54a2
     opt_prompt = percent_plus_unescape (opt_prompt, 0);