diff options
author | NIIBE Yutaka <[email protected]> | 2023-07-18 05:43:36 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2023-07-18 05:43:36 +0000 |
commit | ea1935252e287b63f04c6d460cfb85e4e5efe379 (patch) | |
tree | 926cd14224f7058027cebe985f354868f66f8969 /agent/call-pinentry.c | |
parent | common,w32: Fix FD2INT macro. (diff) | |
download | gnupg-ea1935252e287b63f04c6d460cfb85e4e5efe379.tar.gz gnupg-ea1935252e287b63f04c6d460cfb85e4e5efe379.zip |
commond: Introduce FD2NUM to express conversion to number of fds.
* common/sysutils.h (FD2NUM): New.
* agent/call-pinentry.c (watch_sock): Use FD2NUM.
* agent/gpg-agent.c (handle_connections): Likewise.
* dirmngr/dirmngr.c (handle_connections): Likewise.
* dirmngr/http.c (connect_with_timeout): Likewise.
* kbx/keyboxd.c (handle_connections): Likewise.
* scd/scdaemon.c (handle_connections): Likewise.
* tpm2d/tpm2daemon.c (handle_connections): Likewise.
--
GnuPG-bug-id: 6598
Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'agent/call-pinentry.c')
-rw-r--r-- | agent/call-pinentry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/call-pinentry.c b/agent/call-pinentry.c index 2369dffc2..9d8d93aec 100644 --- a/agent/call-pinentry.c +++ b/agent/call-pinentry.c @@ -1302,7 +1302,7 @@ watch_sock (void *arg) FD_ZERO (&fdset); FD_SET (FD2INT (sock), &fdset); - err = npth_select (FD2INT (sock)+1, &fdset, NULL, NULL, &timeout); + err = npth_select (FD2NUM (sock)+1, &fdset, NULL, NULL, &timeout); if (err < 0) { |