diff options
author | Ken Raeburn <raeburn@mit.edu> | 2001-03-06 02:18:47 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@mit.edu> | 2001-03-06 02:18:47 +0000 |
commit | 73b74582df45303fb0d4818875bcc20e362d1587 (patch) | |
tree | 56fba93089f77b42c14f49e7f3f5dc76c90f50c5 /src/lib/crypto/string_to_key.c | |
parent | dce11d06547b52fa2f4591e9a7d4cbeb77a9f3d0 (diff) | |
download | krb5-73b74582df45303fb0d4818875bcc20e362d1587.tar.gz krb5-73b74582df45303fb0d4818875bcc20e362d1587.tar.xz krb5-73b74582df45303fb0d4818875bcc20e362d1587.zip |
krb5_const -> const
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13058 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/crypto/string_to_key.c')
-rw-r--r-- | src/lib/crypto/string_to_key.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/crypto/string_to_key.c b/src/lib/crypto/string_to_key.c index c9a3d33e9..378050800 100644 --- a/src/lib/crypto/string_to_key.c +++ b/src/lib/crypto/string_to_key.c @@ -31,8 +31,8 @@ KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_c_string_to_key(context, enctype, string, salt, key) krb5_context context; krb5_enctype enctype; - krb5_const krb5_data *string; - krb5_const krb5_data *salt; + const krb5_data *string; + const krb5_data *salt; krb5_keyblock *key; { int i; |