[13] in GSSAPI Development
gss_release_cred()
daemon@ATHENA.MIT.EDU (Theodore Ts'o)
Mon Apr 29 23:11:55 1991
Date: Mon, 29 Apr 91 23:11:24 -0400
From: tytso@ATHENA.MIT.EDU (Theodore Ts'o)
To: gssapi-dev@ATHENA.MIT.EDU
Reply-To: tytso@ATHENA.MIT.EDU
Silly question of the day: Why does gss_release_cred take a
(gss_cred_id_t *) type? Why can't it be just of type gss_cred_id_t?
gss_cred_id_t is typedef'ed to be a pointer to a structure --- so we are
currently passing a pointer to a pointer to a structure to a freeing
routine, which seems to be unneccessarily complicated. Or am I missing
something?
- Ted