Major overhaul. Now uses DSA signatures rather than the bogus symmetric
[become] / src / userdb.h
index 19dba5f..1ad0518 100644 (file)
@@ -4,7 +4,7 @@
  *
  * User database management
  *
- * (c) 1997 EBI
+ * (c) 1998 EBI
  */
 
 /*----- Licensing notice --------------------------------------------------*
 /*----- Revision history --------------------------------------------------*
  *
  * $Log: userdb.h,v $
+ * Revision 1.5  2003/10/12 00:14:55  mdw
+ * Major overhaul.  Now uses DSA signatures rather than the bogus symmetric
+ * encrypt-and-hope thing.  Integrated with mLib and Catacomb.
+ *
+ * Revision 1.4  1998/01/12 16:46:38  mdw
+ * Fix copyright date.
+ *
+ * Revision 1.3  1997/08/20  16:25:08  mdw
+ * Rename `userdb_reinit' to `userdb_end' for more sensible restart.
+ *
  * Revision 1.2  1997/08/04 10:24:26  mdw
  * Sources placed under CVS control.
  *
@@ -49,9 +59,7 @@
 #include <grp.h>
 #include <pwd.h>
 
-#ifndef SYM_H
-#  include "sym.h"
-#endif
+#include <mLib/sym.h>
 
 /*----- Type definitions --------------------------------------------------*/
 
@@ -218,16 +226,16 @@ extern struct group *userdb_nextGroup_r(userdb_iter */*i*/);
 
 extern void userdb_init(void);
 
-/* --- @userdb_reinit@ --- *
+/* --- @userdb_end@ --- *
  *
  * Arguments:  ---
  *
  * Returns:    ---
  *
- * Use:                Reinitialises the user database.
+ * Use:                Closes down the user database.
  */
 
-extern void userdb_reinit(void);
+extern void userdb_end(void);
 
 /*----- That's all, folks -------------------------------------------------*/