From: Zhanna Tsitkov Date: Wed, 16 Sep 2009 17:58:58 +0000 (+0000) Subject: Fix return value of krb5int_des_make_key from rev 22769 X-Git-Tag: krb5-1.8-alpha1~350 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=15bf0145e29abaa801c8cf5fc1fe90e852a7a8cd;p=thirdparty%2Fkrb5.git Fix return value of krb5int_des_make_key from rev 22769 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@22770 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/crypto/krb/rand2key/des_rand2key.c b/src/lib/crypto/krb/rand2key/des_rand2key.c index 46edd9fa44..47db2c39f5 100644 --- a/src/lib/crypto/krb/rand2key/des_rand2key.c +++ b/src/lib/crypto/krb/rand2key/des_rand2key.c @@ -47,6 +47,8 @@ krb5int_des_make_key(const krb5_data *randombits, krb5_keyblock *key) ((key->contents[6]&1)<<7)); mit_des_fixup_key_parity(key->contents); + + return(0); }