Skip to content

Commit

Permalink
Fix type used to call krb5_rc_io_size (one last time).
Browse files Browse the repository at this point in the history
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4430 dc483132-0cff-0310-8789-dd5450dbe970
  • Loading branch information
tytso committed Oct 3, 1994
1 parent a76722b commit 49e1d19
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/lib/krb5/rcache/ChangeLog
@@ -1,3 +1,8 @@
Mon Oct 3 19:32:59 1994 Theodore Y. Ts'o (tytso@dcl)

* rc_def.c (krb5_rc_dfl_recover): krb5_rc_io_size was being called
(still) with the wrong type argument. Should have been &t->d.

Fri Sep 30 21:59:08 1994 Theodore Y. Ts'o (tytso@dcl)

* rc_def.c (krb5_rc_dfl_ops): Add placeholder for magic number
Expand Down
2 changes: 1 addition & 1 deletion src/lib/krb5/rcache/rc_dfl.c
Expand Up @@ -381,7 +381,7 @@ krb5_rcache id;
if (retval = krb5_rc_io_open(&t->d,t->name))
return retval;

max_size = krb5_rc_io_size(t->d);
max_size = krb5_rc_io_size(&t->d);

rep = NULL;
if (krb5_rc_io_read(&t->d,(krb5_pointer) &t->lifespan,sizeof(t->lifespan))) {
Expand Down

0 comments on commit 49e1d19

Please sign in to comment.