diff options
| author | Ezra Peisach <epeisach@mit.edu> | 2006-04-19 19:34:55 +0000 |
|---|---|---|
| committer | Ezra Peisach <epeisach@mit.edu> | 2006-04-19 19:34:55 +0000 |
| commit | dcc9a3bb91928d7bf3e871fd469a536fa322ad48 (patch) | |
| tree | 1aeb6c093fdc808419061d7d7b54250a5188a66a /src/include | |
| parent | 61f097e67c69e99e431c711ada5bbcd7cc81ae16 (diff) | |
| download | krb5-dcc9a3bb91928d7bf3e871fd469a536fa322ad48.tar.gz krb5-dcc9a3bb91928d7bf3e871fd469a536fa322ad48.tar.xz krb5-dcc9a3bb91928d7bf3e871fd469a536fa322ad48.zip | |
Prototype for krb5_c_prf missing const
When krb5_c_prf was added in r17219 to implement RFC 3961 PRF, the
prototype for krb5_c_prf has the incomming krb5_data not flagged as const.
The implementation usage in the dk_prf.c declare as const. Make everything
consistent.
ticket: new
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17943 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/k5-int.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/k5-int.h b/src/include/k5-int.h index d80db9dc77..d9a464733f 100644 --- a/src/include/k5-int.h +++ b/src/include/k5-int.h @@ -612,9 +612,10 @@ typedef krb5_error_code (*krb5_str2key_func) (const struct krb5_enc_provider *en const krb5_data *salt, const krb5_data *parm, krb5_keyblock *key); typedef krb5_error_code (*krb5_prf_func)( - const struct krb5_enc_provider *enc, const struct krb5_hash_provider *hash, + const struct krb5_enc_provider *enc, + const struct krb5_hash_provider *hash, const krb5_keyblock *key, - krb5_data *in, krb5_data *out); + const krb5_data *in, krb5_data *out); struct krb5_keytypes { krb5_enctype etype; |
