1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-09 23:39:51 +02:00

Add missing variable.

* agent/gpg-agent.c (handle_connections) [!W32]: Add missing variable.
This commit is contained in:
Werner Koch 2012-01-25 12:11:41 +01:00
parent add8ac3d56
commit 4ee5b5c91e

View File

@ -1937,8 +1937,11 @@ handle_connections (gnupg_fd_t listen_fd, gnupg_fd_t listen_fd_ssh)
ret = npth_pselect (nfd+1, &read_fdset, NULL, NULL, &timeout, npth_sigev_sigmask());
saved_errno = errno;
while (npth_sigev_get_pending(&signo))
handle_signal (signo);
{
int signo;
while (npth_sigev_get_pending (&signo))
handle_signal (signo);
}
#else
events_set = 0;
ret = npth_eselect (nfd+1, &read_fdset, NULL, NULL, &timeout, events, &events_set);