+Sun Oct 15 10:51:22 1995 <tytso@rsts-11.mit.edu>
+
+ * ktest.c (ktest_make_sample_alt_method,
+ ktest_make_sample_etype_info): Fixed signed/unsinged
+ -Wall flame.
+
Fri Sep 29 14:23:47 1995 Theodore Y. Ts'o <tytso@dcl>
* Makefile.in (clean): Remove trval on a make clean
krb5_alt_method * p;
{
p->method = 42;
- p->data = "secret";
+ p->data = (krb5_octet *) "secret";
p->length = strlen(p->data);
return 0;
}
krb5_etype_info_entry * p;
{
p->etype = 1;
- p->salt = "Morton";
+ p->salt = (krb5_octet *) "Morton";
p->length = strlen(p->salt);
return 0;
}