+Thu May 25 15:39:31 1995 Keith Vetter (keithv@fusion.com)
+
+ * los-proto.h: moved in the prototype for krb5_make_fulladdr.
+
Tue May 23 15:33:00 1995 Theodore Y. Ts'o (tytso@dcl)
* k5-config.h, k5-sockets.h: Move the sockets specific setup out
krb5_error_code krb5_find_config_files
PROTOTYPE(());
+krb5_error_code krb5_make_fulladdr
+ PROTOTYPE((krb5_context,
+ krb5_address *,
+ krb5_address *,
+ krb5_address *));
+
#endif /* KRB5_LIBOS_PROTO__ */
+Thu May 25 15:37:39 1995 Keith Vetter (keithv@fusion.com)
+
+ * fcc_maybe.c: the NEED_SOCKETS has to be before the #include line.
+
Tue May 23 16:28:07 1995 Theodore Y. Ts'o (tytso@dcl)
* fcc_maybe.c: Rearrange #include files so that krb5.h gets
* This file contains the source code for conditional open/close calls.
*/
+#define NEED_SOCKETS /* Only for ntohs, etc. */
+#define NEED_LOWLEVEL_IO
#include "k5-int.h"
-#define NEED_SOCKETS /* Only for ntohs, etc. */
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
+Thu May 25 15:33:45 1995 Keith Vetter (keithv@fusion.com)
+
+ * os-proto.h: moved prototype for krb5_make_fulladdr to
+ los-proto.h since it's needed by the krb directory.
+ * ktdefnam.c: fixed signed/unsigned mismatch.
+ * read_pwd.c: pc stub didn't track changes to the real routines
+ parameter list (const was added).
+
Tue May 23 16:29:24 1995 Theodore Y. Ts'o (tytso@dcl)
* t_std_conf.c, timeofday.c, unlck_file.c: Rearrange #include
cp = getenv("KRB5_KTNAME");
if (cp) {
strncpy(name, cp, namesize);
- if (strlen(cp) >= namesize)
+ if (strlen(cp) >= (size_t) namesize)
return KRB5_CONFIG_NOTENUFSPACE;
} else {
strncpy(name, krb5_defkeyname, namesize);
int */
krb5_address **));
-krb5_error_code krb5_make_fulladdr
- PROTOTYPE((krb5_context,
- krb5_address *,
- krb5_address *,
- krb5_address *));
-
#endif /* KRB5_USE_INET */
#endif /* KRB5_LIBOS_INT_PROTO__ */
krb5_error_code
krb5_read_password(context, prompt, prompt2, return_pwd, size_return)
krb5_context context;
- char *prompt;
- char *prompt2;
+ const char *prompt;
+ const char *prompt2;
char *return_pwd;
int *size_return;
{