Comment about the DIR module.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@18045 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-09-07 08:56:48 +00:00
parent 34b0d0c2ec
commit ea514adfd7

View File

@@ -35,6 +35,14 @@
RCSID("$Id$");
#include <dirent.h>
/*
* The DIR keyset module is strange compared to the other modules
* since it does lazy evaluation and really doesn't keep any local
* state except for the directory iteration and cert iteration of
* files. DIR ignores most errors so that the consumer doesn't get
* failes for stray files in directories.
*/
struct dircursor {
DIR *dir;
hx509_certs certs;