diff options
author | Werner Koch <wk@gnupg.org> | 2010-03-08 18:05:37 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2010-03-08 18:05:37 +0100 |
commit | 40a78fab0c224bfb92097a6d7f93c0893740d190 (patch) | |
tree | 3d8b2bb9ad0346fa80f04cf7bab3181d55bff31e /g10/openfile.c | |
parent | More cleanups (diff) | |
download | gnupg2-40a78fab0c224bfb92097a6d7f93c0893740d190.tar.xz gnupg2-40a78fab0c224bfb92097a6d7f93c0893740d190.zip |
Use macros for iobuf ioctls.
Diffstat (limited to 'g10/openfile.c')
-rw-r--r-- | g10/openfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/openfile.c b/g10/openfile.c index 9f41273e0..4b7fe3600 100644 --- a/g10/openfile.c +++ b/g10/openfile.c @@ -305,7 +305,7 @@ open_outfile (int inp_fd, const char *iname, int mode, iobuf_t *a) } if (*a) - iobuf_ioctl (*a, 3, 1, NULL); /* Disable fd caching. */ + iobuf_ioctl (*a, IOBUF_IOCTL_NO_CACHE, 1, NULL); return rc; } |