+2001-06-07 Ezra Peisach <epeisach@mit.edu>
+
+ * k5-int.h: Remove AS_REP_105_SAM_COMPAT definition. Not used in
+ tree. Remove SYSV redefinition of random() to rand() and
+ srandom() to srand(). Two locations in tree that might matter
+ already handled in configure. Unicos redefinition of utimes() to
+ utime() removed - appl/bsd has its own implementation.
+
2001-06-06 Ken Raeburn <raeburn@mit.edu>
* Makefile.in ($(srcdir)/krb5/autoconf.h.in): New target; rebuild
#include "osconf.h"
-/* Compatibility switch for SAM preauth */
-#define AS_REP_105_SAM_COMPAT
-
/*
* Begin "k5-config.h"
*/
#endif /* HAVE_SYS_TYPES_H */
#endif /* KRB5_SYSTYPES__ */
-#ifdef SYSV
-/* Change srandom and random to use rand and srand */
-/* Taken from the Sandia changes. XXX We should really just include */
-/* srandom and random into Kerberos release, since rand() is a really */
-/* bad random number generator.... [tytso:19920616.2231EDT] */
-#define random() rand()
-#define srandom(a) srand(a)
-#ifndef unicos61
-#define utimes(a,b) utime(a,b)
-#endif /* unicos61 */
-#endif /* SYSV */
-
#define DEFAULT_PWD_STRING1 "Enter password:"
#define DEFAULT_PWD_STRING2 "Re-enter password for verification:"
#define KRB5_VERIFY_MAGIC(structure,magic_number) \
if ((structure)->magic != (magic_number)) return (magic_number);
-int krb5_seteuid (int);
-
/* to keep lint happy */
#define krb5_xfree(val) free((char FAR *)(val))