diff options
author | Werner Koch <[email protected]> | 2003-06-08 21:35:25 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2003-06-08 21:35:25 +0000 |
commit | 1c24b139e726c316c76b16ed47f6326ff0e690ab (patch) | |
tree | 49ece9a7b10a9bde3cfbe361e5c43b9a24cfab2f | |
parent | * import.c (import_keys_internal): Invalidate the cache so that (diff) | |
download | gnupg-1c24b139e726c316c76b16ed47f6326ff0e690ab.tar.gz gnupg-1c24b139e726c316c76b16ed47f6326ff0e690ab.zip |
* import.c (import_keys_internal): Invalidate the cache so that
the file descriptor gets closed. Fixes bug reported by Juan
F. Codagnone.
-rw-r--r-- | g10/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/import.c b/g10/import.c index c3cf02624..48ef86834 100644 --- a/g10/import.c +++ b/g10/import.c @@ -168,7 +168,7 @@ import_keys_internal( IOBUF inp, char **fnames, int nnames, else { rc = import( inp2, fname, stats, options ); iobuf_close(inp2); - /* must invalidate that ugly cache to actually close it */ + /* Must invalidate that ugly cache to actually close it. */ iobuf_ioctl (NULL, 2, 0, (char*)fname); if( rc ) log_error("import from `%s' failed: %s\n", fname, |