aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Carr <jfc@mit.edu>1991-05-29 07:09:25 +0000
committerJohn Carr <jfc@mit.edu>1991-05-29 07:09:25 +0000
commitc53ffa189b1e41a8bca3e685efd8bc85b7216591 (patch)
tree225a404b4a554fb143cc9ed94d0d41eb8c1248e5 /src
parent28bfd7b8e8cda7faf2615695b789d637151a57dc (diff)
downloadkrb5-c53ffa189b1e41a8bca3e685efd8bc85b7216591.zip
krb5-c53ffa189b1e41a8bca3e685efd8bc85b7216591.tar.gz
krb5-c53ffa189b1e41a8bca3e685efd8bc85b7216591.tar.bz2
Delete times argument to mk_req_extended
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2123 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/lib/krb5/krb/mk_req_ext.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/krb5/krb/mk_req_ext.c b/src/lib/krb5/krb/mk_req_ext.c
index 36d947a..06f2fa0 100644
--- a/src/lib/krb5/krb/mk_req_ext.c
+++ b/src/lib/krb5/krb/mk_req_ext.c
@@ -63,11 +63,10 @@ static krb5_error_code generate_authenticator PROTOTYPE((krb5_authenticator *,
krb5_int32 ));
krb5_error_code
-krb5_mk_req_extended(ap_req_options, checksum, times, kdc_options,
+krb5_mk_req_extended(ap_req_options, checksum, kdc_options,
sequence, newkey, ccache, creds, authentp, outbuf)
const krb5_flags ap_req_options;
const krb5_checksum *checksum;
-const krb5_ticket_times *times;
const krb5_flags kdc_options;
krb5_int32 sequence;
krb5_keyblock **newkey;
@@ -90,7 +89,6 @@ krb5_data *outbuf;
if (!creds->ticket.length) {
/* go get creds */
- creds->times = *times; /* XXX do we need times? */
if (retval = krb5_get_credentials(kdc_options,
ccache,
creds))