1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-17 00:39:50 +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 4074f96627
commit a55d2e16f1

View File

@ -1938,8 +1938,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()); ret = npth_pselect (nfd+1, &read_fdset, NULL, NULL, &timeout, npth_sigev_sigmask());
saved_errno = errno; saved_errno = errno;
while (npth_sigev_get_pending(&signo)) {
handle_signal (signo); int signo;
while (npth_sigev_get_pending (&signo))
handle_signal (signo);
}
#else #else
events_set = 0; events_set = 0;
ret = npth_eselect (nfd+1, &read_fdset, NULL, NULL, &timeout, events, &events_set); ret = npth_eselect (nfd+1, &read_fdset, NULL, NULL, &timeout, events, &events_set);