aboutsummaryrefslogtreecommitdiffstats
path: root/g10/passphrase.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2003-09-23 17:48:33 +0000
committerWerner Koch <[email protected]>2003-09-23 17:48:33 +0000
commit4c66e94ff91d680eaf1d9c48a62d66d1951f90ef (patch)
tree66ede04edbfe1c45eece46e852093282832f8312 /g10/passphrase.c
parent2003-09-22 Timo Schulz <[email protected]> (diff)
downloadgnupg-4c66e94ff91d680eaf1d9c48a62d66d1951f90ef.tar.gz
gnupg-4c66e94ff91d680eaf1d9c48a62d66d1951f90ef.zip
Merged most of David Shaw's changes in 1.3 since 2003-06-03.
Diffstat (limited to 'g10/passphrase.c')
-rw-r--r--g10/passphrase.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/g10/passphrase.c b/g10/passphrase.c
index d00340109..ac7e71591 100644
--- a/g10/passphrase.c
+++ b/g10/passphrase.c
@@ -29,7 +29,7 @@
#include <sys/socket.h>
#include <sys/un.h>
#endif
-#if defined (__MINGW32__) || defined (__CYGWIN32__)
+#if defined (_WIN32) || defined (__CYGWIN32__)
# include <windows.h>
#endif
#include <errno.h>
@@ -101,7 +101,7 @@ static char *fd_passwd = NULL;
static char *next_pw = NULL;
static char *last_pw = NULL;
-#if defined (__MINGW32__)
+#if defined (_WIN32)
static int read_fd = 0;
static int write_fd = 0;
#endif
@@ -191,7 +191,7 @@ read_passphrase_from_fd( int fd )
static int
writen ( int fd, const void *buf, size_t nbytes )
{
-#if defined (__MINGW32__)
+#if defined (_WIN32)
DWORD nwritten, nleft = nbytes;
while (nleft > 0) {
@@ -234,7 +234,7 @@ writen ( int fd, const void *buf, size_t nbytes )
static int
readn ( int fd, void *buf, size_t buflen, size_t *ret_nread )
{
-#if defined (__MINGW32__)
+#if defined (_WIN32)
DWORD nread, nleft = buflen;
while (nleft > 0) {
@@ -328,7 +328,7 @@ readline (int fd, char *buf, size_t buflen)
#if !defined (__riscos__)
-#if !defined (__MINGW32__)
+#if !defined (_WIN32)
/* For the new Assuan protocol we may have to send options */
static int
agent_send_option (int fd, const char *name, const char *value)
@@ -376,7 +376,11 @@ agent_send_all_options (int fd)
}
if (!opt.ttyname)
- dft_ttyname = tty_get_ttyname ();
+ {
+ dft_ttyname = getenv ("GPG_TTY");
+ if ((!dft_ttyname || !*dft_ttyname) && tty_get_ttyname ())
+ dft_ttyname = tty_get_ttyname ();
+ }
if (opt.ttyname || dft_ttyname)
{
if (agent_send_option (fd, "ttyname",
@@ -433,7 +437,7 @@ agent_send_all_options (int fd)
#endif
return rc;
}
-#endif /*!__MINGW32__*/
+#endif /*!_WIN32*/
/*
@@ -444,7 +448,7 @@ agent_send_all_options (int fd)
static int
agent_open (int *ret_prot)
{
-#if defined (__MINGW32__)
+#if defined (_WIN32)
int fd;
char *infostr, *p;
HANDLE h;
@@ -589,7 +593,7 @@ agent_open (int *ret_prot)
static void
agent_close ( int fd )
{
-#if defined (__MINGW32__)
+#if defined (_WIN32)
HANDLE h = OpenEvent(EVENT_ALL_ACCESS, FALSE, "gpg_agent");
ResetEvent(h);
#else