1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

Fixed bug 479. Not a real good fix but a reliable one which limits possible

breakage of other partys of the code.
This commit is contained in:
Werner Koch 2006-07-31 10:16:33 +00:00
parent bd5aa4864d
commit 064a4a6240
33 changed files with 947 additions and 576 deletions

View file

@ -197,12 +197,15 @@ verify_files( int nfiles, char **files )
* spaces, so that we can process nearly all filenames */
line[strlen(line)-1] = 0;
verify_one_file( line );
iobuf_ioctl( NULL, 2, 0, NULL); /* Invalidate entire cache. */
}
}
else { /* take filenames from the array */
for(i=0; i < nfiles; i++ )
for(i=0; i < nfiles; i++ ) {
verify_one_file( files[i] );
iobuf_ioctl( NULL, 2, 0, NULL); /* Invalidate entire cache. */
}
}
return 0;
}