2011-08-08 00:04:43 +02:00
|
|
|
diff -rup gnupg-2.0.18.orig/agent/gpg-agent.c gnupg-2.0.18/agent/gpg-agent.c
|
|
|
|
--- gnupg-2.0.18.orig/agent/gpg-agent.c 2011-08-04 10:57:02.000000000 +0100
|
|
|
|
+++ gnupg-2.0.18/agent/gpg-agent.c 2011-08-06 21:01:32.000000000 +0100
|
|
|
|
@@ -1002,6 +1002,10 @@ main (int argc, char **argv )
|
2008-01-10 14:14:30 +01:00
|
|
|
gnupg_fd_t fd_ssh;
|
2007-01-16 00:15:33 +01:00
|
|
|
pid_t pid;
|
|
|
|
|
|
|
|
+ char *tmp1, *tmp;
|
|
|
|
+ char *tmp2 = "gpg-XXXXXX/S.gpg-agent";
|
|
|
|
+ size_t len;
|
|
|
|
+
|
|
|
|
/* Remove the DISPLAY variable so that a pinentry does not
|
|
|
|
default to a specific display. There is still a default
|
|
|
|
display when gpg-agent was started using --display or a
|
2011-08-08 00:04:43 +02:00
|
|
|
@@ -1013,13 +1017,23 @@ main (int argc, char **argv )
|
2007-01-16 00:15:33 +01:00
|
|
|
unsetenv ("DISPLAY");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
+ if ((tmp1 = getenv("TMPDIR")) == NULL)
|
|
|
|
+ tmp1 = "/tmp";
|
|
|
|
+
|
|
|
|
+ len = strlen(tmp1) + strlen(tmp2) + 10;
|
|
|
|
+ tmp = malloc(len);
|
|
|
|
+
|
2008-01-10 14:14:30 +01:00
|
|
|
+ snprintf(tmp, len, "%s%s%s", tmp1, tmp1 && strlen(tmp1) > 0 ? "/" : "", tmp2);
|
2007-01-16 00:15:33 +01:00
|
|
|
|
|
|
|
/* Create the sockets. */
|
2011-08-08 00:04:43 +02:00
|
|
|
socket_name = create_socket_name
|
2009-01-13 18:57:46 +01:00
|
|
|
- ("S.gpg-agent", "/tmp/gpg-XXXXXX/S.gpg-agent");
|
2007-01-16 00:15:33 +01:00
|
|
|
- if (opt.ssh_support)
|
2009-01-13 18:57:46 +01:00
|
|
|
+ ("S.gpg-agent", tmp);
|
2007-01-16 00:15:33 +01:00
|
|
|
+ if (opt.ssh_support) {
|
|
|
|
+ snprintf(tmp, len, "%s%s%s.ssh", tmp1, tmp1 && strlen(tmp1) > 0 ? "/" : "", tmp2);
|
2011-08-08 00:04:43 +02:00
|
|
|
socket_name_ssh = create_socket_name
|
2009-11-16 18:35:33 +01:00
|
|
|
- ("S.gpg-agent.ssh", "/tmp/gpg-XXXXXX/S.gpg-agent.ssh");
|
2009-01-13 18:57:46 +01:00
|
|
|
+ ("S.gpg-agent.ssh", tmp);
|
2007-01-16 00:15:33 +01:00
|
|
|
+ }
|
|
|
|
+ free(tmp);
|
2009-01-13 18:57:46 +01:00
|
|
|
|
|
|
|
fd = create_server_socket (socket_name, 0, &socket_nonce);
|
2007-01-16 00:15:33 +01:00
|
|
|
if (opt.ssh_support)
|