Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
git-svn-id: svn://anonsvn.mit.edu/krb5/branches/mskrb-integ-crypto-iov@21233 dc483132-0cff-0310-8789-dd5450dbe970
  • Loading branch information
hartmans committed Dec 1, 2008
1 parent 9f69fa4 commit e67ce6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/crypto/enc_provider/des3.c
Expand Up @@ -177,7 +177,7 @@ k5_des3_encrypt_iov(const krb5_keyblock *key,
/* this has a return value, but the code always returns zero */
krb5int_des3_cbc_encrypt_iov(data, num_data,
schedule[0], schedule[1], schedule[2],
ivec?(const unsigned char *) ivec->data : NULL);
ivec != NULL ? (const unsigned char *) ivec->data : NULL);

zap(schedule, sizeof(schedule));

Expand All @@ -200,7 +200,7 @@ k5_des3_decrypt_iov(const krb5_keyblock *key,
/* this has a return value, but the code always returns zero */
krb5int_des3_cbc_decrypt_iov(data, num_data,
schedule[0], schedule[1], schedule[2],
ivec?(const unsigned char *) ivec->data : NULL);
ivec != NULL ? (const unsigned char *) ivec->data : NULL);

zap(schedule, sizeof(schedule));

Expand Down

0 comments on commit e67ce6d

Please sign in to comment.