aboutsummaryrefslogtreecommitdiff
path: root/src/lib/krb5/krb/rd_req.c
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1991-02-19 19:38:17 +0000
committerTheodore Tso <tytso@mit.edu>1991-02-19 19:38:17 +0000
commit9ec25ed6ea8b1201228c6bf053a6ef775a9f9540 (patch)
tree5a149e94ede1a985f608bec92eadcbe1a3021f95 /src/lib/krb5/krb/rd_req.c
parent9652b5a3cde3757f5f30850ef4a9d1f457d22e4c (diff)
downloadkrb5-9ec25ed6ea8b1201228c6bf053a6ef775a9f9540.zip
krb5-9ec25ed6ea8b1201228c6bf053a6ef775a9f9540.tar.gz
krb5-9ec25ed6ea8b1201228c6bf053a6ef775a9f9540.tar.bz2
Changes to conform with API modifications
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1729 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5/krb/rd_req.c')
-rw-r--r--src/lib/krb5/krb/rd_req.c44
1 files changed, 22 insertions, 22 deletions
diff --git a/src/lib/krb5/krb/rd_req.c b/src/lib/krb5/krb/rd_req.c
index 9fb100a..2db92e7 100644
--- a/src/lib/krb5/krb/rd_req.c
+++ b/src/lib/krb5/krb/rd_req.c
@@ -22,27 +22,27 @@ static char rcsid_rd_req_c[] =
#include <krb5/ext-proto.h>
/*
- Parses a KRB_AP_REQ message, returning its contents.
-
- server specifies the expected server's name for the ticket.
-
- sender_addr specifies the address(es) expected to be present in the
- ticket.
-
- rcache specifies a replay detection cache used to store authenticators and
- server names
-
- keyproc specifies a procedure to generate a decryption key for the
- ticket. If keyproc is non-NULL, keyprocarg is passed to it, and the result
- used as a decryption key. If keyproc is NULL, then fetchfrom is checked;
- if it is non-NULL, it specifies a parameter name from which to retrieve the
- decryption key. If fetchfrom is NULL, then the default key store is
- consulted.
-
- authdat->ticket and authdat->authenticator are set to allocated storage
- structures; the caller should free them when finished.
-
- returns system errors, encryption errors, replay errors
+ * Parses a KRB_AP_REQ message, returning its contents.
+ *
+ * server specifies the expected server's name for the ticket.
+ *
+ * sender_addr specifies the address(es) expected to be present in the
+ * ticket.
+ *
+ * rcache specifies a replay detection cache used to store authenticators and
+ * server names
+ *
+ * keyproc specifies a procedure to generate a decryption key for the
+ * ticket. If keyproc is non-NULL, keyprocarg is passed to it, and the result
+ * used as a decryption key. If keyproc is NULL, then fetchfrom is checked;
+ * if it is non-NULL, it specifies a parameter name from which to retrieve the
+ * decryption key. If fetchfrom is NULL, then the default key store is
+ * consulted.
+ *
+ * authdat is set to point at allocated storage structures; the caller
+ * should free them when finished.
+ *
+ * returns system errors, encryption errors, replay errors
*/
/* widen prototypes, if needed */
@@ -64,7 +64,7 @@ krb5_const_pointer fetchfrom;
rdreq_key_proc keyproc;
krb5_pointer keyprocarg;
krb5_rcache rcache;
-krb5_tkt_authent *authdat;
+krb5_tkt_authent **authdat;
{
krb5_error_code retval;
krb5_ap_req *request;