+2003-12-13 Ken Raeburn <raeburn@mit.edu>
+
+ * client_init.c (enctypes): Variable deleted.
+ (_kadm5_init_any): Pass a null pointer instead of enctypes.
+
2003-01-10 Ken Raeburn <raeburn@mit.edu>
* Makefile.in: Add AC_SUBST_FILE marker for lib_frag and libobj_frag.
-1
};
-static krb5_enctype enctypes[] = {
- ENCTYPE_DES3_CBC_SHA1,
- ENCTYPE_ARCFOUR_HMAC,
- ENCTYPE_DES_CBC_MD5,
- ENCTYPE_DES_CBC_CRC,
- 0,
-};
-
static kadm5_ret_t _kadm5_init_any(char *client_name,
enum init_type init_type,
char *pass,
code = krb5_get_in_tkt_with_password(handle->context,
0, /* no options */
0, /* default addresses */
- enctypes,
+ 0, /* enctypes */
NULL, /* XXX preauth */
pass,
ccache,
code = krb5_get_in_tkt_with_keytab(handle->context,
0, /* no options */
0, /* default addrs */
- enctypes,
+ 0, /* enctypes */
NULL, /* XXX preauth */
kt,
ccache,