prototype is present in des.h. Cast argument to des_read_password.
* getst.c, put_svc_key.c, rd_svc_key.c, save_creds.c, tf_util.c:
Include krb4int.h for prototypes.
* krb4int.h: New file containing private prototypes for krb4
functions not used outside the library. Contains getst() and
tf_save_cred().
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13358
dc483132-0cff-0310-8789-
dd5450dbe970
+2001-06-18 Ezra Peisach <epeisach@mit.edu>
+
+ * g_pw_in_tkt.c: Include krb5.h so that des_read_password()
+ prototype is present in des.h. Cast argument to des_read_password.
+
+ * getst.c, put_svc_key.c, rd_svc_key.c, save_creds.c, tf_util.c:
+ Include krb4int.h for prototypes.
+
+ * krb4int.h: New file containing private prototypes for krb4
+ functions not used outside the library. Contains getst() and
+ tf_save_cred().
+
2001-06-11 Ezra Peisach <epeisach@mit.edu>
* sendauth.c (krb_sendauth): Add KRB5_DLLIMP/KRB5_CALLCONV definitions
*/
#include "mit-copyright.h"
+#include <krb5.h>
#include "krb.h"
#include "krb_err.h"
#include "prot.h"
if (passwd)
string_to_key(passwd, key);
else {
- des_read_password(key, "Password: ", 0);
+ des_read_password((des_cblock *)key, "Password: ", 0);
}
#endif /* NOENCRYPTION */
#endif /* unix */
#include "mit-copyright.h"
#include "krb.h"
+#include "krb4int.h"
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
--- /dev/null
+/* A series of private prototypes that we are not exporting but should
+ * be available for self consistancy in the library.
+ */
+
+
+int getst(int, char *, int);
+
+int tf_save_cred(char *, char *, char *, C_Block, int , int, KTEXT, long);
*/
#include "krb.h"
+#include "krb4int.h"
#include <string.h>
#include <stdio.h>
#include "mit-copyright.h"
#include "krb.h"
+#include "krb4int.h"
#include <stdio.h>
#include <string.h>
#include "mit-copyright.h"
#include <stdio.h>
#include "krb.h"
+#include "krb4int.h"
/*
* This routine takes a ticket and associated info and calls
#include "krb.h"
#include "k5-int.h"
+#include "krb4int.h"
#include <stdio.h>
#include <string.h>