diff options
author | Keith Vetter <keithv@fusion.com> | 1995-03-02 04:06:41 +0000 |
---|---|---|
committer | Keith Vetter <keithv@fusion.com> | 1995-03-02 04:06:41 +0000 |
commit | ca053d6bea711e83b2c35dfbfe82040409c5b921 (patch) | |
tree | 6362293a0082b076a7b4f8040de252b1e753ee29 /src/include/krb5 | |
parent | 8d3362699e89b6066fff2bc0f3e446cb2eddfbdd (diff) | |
download | krb5-ca053d6bea711e83b2c35dfbfe82040409c5b921.tar.gz krb5-ca053d6bea711e83b2c35dfbfe82040409c5b921.tar.xz krb5-ca053d6bea711e83b2c35dfbfe82040409c5b921.zip |
Fixed up a const attribute on krb5_send_tgs in func-proto.h
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5057 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/krb5')
-rw-r--r-- | src/include/krb5/ChangeLog | 4 | ||||
-rw-r--r-- | src/include/krb5/func-proto.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/include/krb5/ChangeLog b/src/include/krb5/ChangeLog index c96c35b11..ad282097c 100644 --- a/src/include/krb5/ChangeLog +++ b/src/include/krb5/ChangeLog @@ -1,3 +1,7 @@ +Wed Mar 1 20:00:00 1995 Keith Vetter (keithv@fusion.com) + + * func-proto.h: fixed up a const attribute to krb5_send_tgs. + Wed Mar 1 17:40:00 1995 Keith Vetter (keithv@fusion.com) * func-proto.h: added missing prototype for krb5_mk_cred. diff --git a/src/include/krb5/func-proto.h b/src/include/krb5/func-proto.h index eb1f0863f..e8b50d1cf 100644 --- a/src/include/krb5/func-proto.h +++ b/src/include/krb5/func-proto.h @@ -439,7 +439,7 @@ krb5_error_code INTERFACE krb5_send_tgs const krb5_cksumtype, krb5_const_principal, krb5_address * const *, - const krb5_authdata **, + krb5_authdata * const *, krb5_pa_data * const *, const krb5_data *, krb5_creds *, |