Add a header, kill a warning.
[become] / acconfig.h
index ee00cfd..b6fe638 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: acconfig.h,v 1.9 1999/05/04 16:25:42 mdw Exp $
+ * $Id: acconfig.h,v 1.10 2003/10/12 00:14:44 mdw Exp $
  *
  * Default settings for `become' config.h
  *
 /*----- Revision history --------------------------------------------------*
  *
  * $Log: acconfig.h,v $
+ * Revision 1.10  2003/10/12 00:14:44  mdw
+ * Major overhaul.  Now uses DSA signatures rather than the bogus symmetric
+ * encrypt-and-hope thing.  Integrated with mLib and Catacomb.
+ *
  * Revision 1.9  1999/05/04 16:25:42  mdw
  * Fixes for new version of automake.
  *
@@ -74,9 +78,6 @@
 /* The `etcdir' contains configuration and state information.  */
 #define ETCDIR "/etc/become"
 
-/* Define to be the size of an int.  */
-#define SIZEOF_INT 4
-
 /* Default login style can be `l_preserve', `l_setuser' or `l_login'.  */
 #define DEFAULT_LOGIN_STYLE l_preserve
 
@@ -87,7 +88,7 @@
 #undef NONETWORK
 
 /* Debugging options. */
-#undef TRACING
+#undef NTRACE
 
 #ifndef TEST_RIG
 #undef NDEBUG
 
 @BOTTOM@
 
-/*----- Some light processing on the configuration varaibles --------------*/
+/*----- Some light processing on the configuration variables --------------*/
 
 /* --- Important filenames based on the @ETCDIR@ --- */
 
 #define file_KEY ETCDIR "/become.key"
+#define file_PUBKEY ETCDIR "/become.pubkey"
 #define file_PID ETCDIR "/become.pid"
-#define file_RANDSEED ETCDIR "/become.random"
 #define file_RULES ETCDIR "/become.conf"
 #define file_SERVER ETCDIR "/become.server"
 
-/* --- Find a suitable 32-bit type --- */
-
-#if SIZEOF_INT < 4
-  typedef unsigned long uint_32;
-#else
-  typedef unsigned int uint_32;
-#endif
-
 /* --- Debugging macros --- */
 
 #ifdef NDEBUG