From 399405e4a7fcfd35f4816f80b29ea85a23ac2cf4 Mon Sep 17 00:00:00 2001 From: Keith Vetter Date: Thu, 27 Apr 1995 18:28:57 +0000 Subject: [PATCH] Changed over to the new profile config file on the PC git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5552 dc483132-0cff-0310-8789-dd5450dbe970 --- src/include/krb5/ChangeLog | 4 ++++ src/include/krb5/k5-config.h | 19 +++++++++++-------- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/src/include/krb5/ChangeLog b/src/include/krb5/ChangeLog index 3be4ea2ac..26edc36cb 100644 --- a/src/include/krb5/ChangeLog +++ b/src/include/krb5/ChangeLog @@ -1,3 +1,7 @@ +Thu Apr 27 11:24:24 1995 Keith Vetter (keithv@fusion.com) + + * k5-config.h: Changed over to the new single config file on the PC. + Wed Apr 26 10:41:08 1995 Ezra Peisach * Makefile.in: Reflect current list of headers to be installed. diff --git a/src/include/krb5/k5-config.h b/src/include/krb5/k5-config.h index c8abd634e..a8134ca0c 100644 --- a/src/include/krb5/k5-config.h +++ b/src/include/krb5/k5-config.h @@ -33,9 +33,12 @@ /* Kerberos Windows initialization file */ #define KERBEROS_INI "kerberos.ini" #define INI_FILES "Files" +#ifdef OLD_CONFIG_FILES #define INI_KRB_CONF "krb.conf" /* Location of krb.conf file */ #define INI_KRB_REALMS "krb.realms" /* Location of krb.realms file */ +#endif #define INI_KRB_CCACHE "krb5cc" /* Location of the ccache */ +#define INI_KRB5_CONF "krb5.ini" /* Location of krb5.conf file */ #define KRB5_DBM_COMPAT__ /* Don't load dbm.h */ #define KRB5_KDB5__ /* Don't load kdb.h */ @@ -106,14 +109,14 @@ typedef unsigned char u_char; /* Some of our own infrastructure where the WinSock stuff was too hairy to dump into a clean Unix program... */ -#define SOCKET_INITIALIZE() win_socket_initialize() -#define SOCKET_CLEANUP() WSACleanup() -#define SOCKET_ERRNO (WSAGetLastError()) -#define SOCKET_SET_ERRNO(x) (WSASetLastError (x)) -#define SOCKET_NFDS(f) (0) /* select()'s first arg is ignored */ -#define SOCKET_READ(fd, b, l) (recv(fd, b, l, 0)) -#define SOCKET_WRITE(fd, b, l) (send(fd, b, l, 0)) -#define SOCKET_EINTR WSAEINTR +#define SOCKET_INITIALIZE() win_socket_initialize() +#define SOCKET_CLEANUP() WSACleanup() +#define SOCKET_ERRNO (WSAGetLastError()) +#define SOCKET_SET_ERRNO(x) (WSASetLastError (x)) +#define SOCKET_NFDS(f) (0) /* select()'s first arg is ignored */ +#define SOCKET_READ(fd, b, l) (recv(fd, b, l, 0)) +#define SOCKET_WRITE(fd, b, l) (send(fd, b, l, 0)) +#define SOCKET_EINTR WSAEINTR int win_socket_initialize(); #endif -- 2.26.2