aboutsummaryrefslogtreecommitdiff
path: root/src/lib/krb5/ccache/stdio/scc_write.c
diff options
context:
space:
mode:
authorChris Provenzano <proven@mit.edu>1995-09-06 19:13:02 +0000
committerChris Provenzano <proven@mit.edu>1995-09-06 19:13:02 +0000
commit01ea1dbbef0647e890c9cb615e31586877cd98fd (patch)
tree59e90cd7ccb0927645cb76b2905e3d072d0337fe /src/lib/krb5/ccache/stdio/scc_write.c
parentb87504a2015b9bf55148c31757137cfb2245b1b5 (diff)
downloadkrb5-01ea1dbbef0647e890c9cb615e31586877cd98fd.zip
krb5-01ea1dbbef0647e890c9cb615e31586877cd98fd.tar.gz
krb5-01ea1dbbef0647e890c9cb615e31586877cd98fd.tar.bz2
* scc_read.c, scc_write.c : s/keytype/enctype/g, s/KEYTYPE/ENCTYPE/g
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6723 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5/ccache/stdio/scc_write.c')
-rw-r--r--src/lib/krb5/ccache/stdio/scc_write.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/krb5/ccache/stdio/scc_write.c b/src/lib/krb5/ccache/stdio/scc_write.c
index 4347b5e..3c55200 100644
--- a/src/lib/krb5/ccache/stdio/scc_write.c
+++ b/src/lib/krb5/ccache/stdio/scc_write.c
@@ -148,10 +148,10 @@ krb5_scc_store_keyblock(context, id, keyblock)
krb5_scc_data *data = (krb5_scc_data *)id->data;
krb5_error_code ret;
- ret = krb5_scc_store_ui_2(context, id, keyblock->keytype);
+ ret = krb5_scc_store_ui_2(context, id, keyblock->enctype);
CHECK(ret);
if (data->version == KRB5_SCC_FVNO_3) {
- ret = krb5_scc_store_ui_2(context, id, keyblock->keytype);
+ ret = krb5_scc_store_ui_2(context, id, keyblock->enctype);
CHECK(ret);
}
ret = krb5_scc_store_int32(context, id, keyblock->length);