agent: Fixed unresolved symbol under Windows.

* agent/gpg-agent.c (main): s/ttyname/gnupg_ttyname/.
--

This was not triggered by the latest mingw runtime but that has other
problems and thus I reverted to the same we used for gpg4win 2.1 which
is Debian Wheezy.
This commit is contained in:
Werner Koch 2014-02-19 11:03:31 +01:00
parent 380a2aa18e
commit 55c3e5f448
1 changed files with 1 additions and 1 deletions

View File

@ -992,7 +992,7 @@ main (int argc, char **argv )
/* Make sure that we have a default ttyname. */
if (!default_ttyname && gnupg_ttyname (1))
default_ttyname = xstrdup (ttyname (1));
default_ttyname = xstrdup (gnupg_ttyname (1));
if (!default_ttytype && getenv ("TERM"))
default_ttytype = xstrdup (getenv ("TERM"));