diff options
author | Marcus Brinkmann <[email protected]> | 2009-12-08 04:09:36 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2009-12-08 04:09:36 +0000 |
commit | e347e5667dd0550a51aa864f34a9213064a37221 (patch) | |
tree | 9850017dccffc1170634cab21120fe4fa5a14d1a /common/iobuf.c | |
parent | Fix last configure change. (diff) | |
download | gnupg-e347e5667dd0550a51aa864f34a9213064a37221.tar.gz gnupg-e347e5667dd0550a51aa864f34a9213064a37221.zip |
2009-12-08 Marcus Brinkmann <[email protected]>
* asshelp.c (start_new_gpg_agent) [HAVE_W32_SYSTEM]: Add missing
argument in assuan_socket_connect invocation.
* iobuf.c (iobuf_open_fd_or_name): Fix type of FD in function
declaration.
Diffstat (limited to 'common/iobuf.c')
-rw-r--r-- | common/iobuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/iobuf.c b/common/iobuf.c index 60e50d677..0d2a5a5ba 100644 --- a/common/iobuf.c +++ b/common/iobuf.c @@ -1266,7 +1266,7 @@ iobuf_is_pipe_filename (const char *fname) "rb" if FNAME is used. In contrast to iobuf_fdopen the file descriptor FD will not be closed during an iobuf_close. */ iobuf_t -iobuf_open_fd_or_name (int fd, const char *fname, const char *mode) +iobuf_open_fd_or_name (gnupg_fd_t fd, const char *fname, const char *mode) { iobuf_t a; |