summaryrefslogtreecommitdiffstats
path: root/src/lib/krb5/krb/copy_auth.c
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2011-09-04 23:52:34 +0000
committerKen Raeburn <raeburn@mit.edu>2011-09-04 23:52:34 +0000
commit4ba58f9b6b7ccb372f09e31ee3d302ffafd50b15 (patch)
treef0d339ede66f7af9153dd1fe016a46ee3aa5d372 /src/lib/krb5/krb/copy_auth.c
parent3b5d496d3d63b28ebd2e23242a3422b1fa838e18 (diff)
downloadkrb5-4ba58f9b6b7ccb372f09e31ee3d302ffafd50b15.tar.gz
krb5-4ba58f9b6b7ccb372f09e31ee3d302ffafd50b15.tar.xz
krb5-4ba58f9b6b7ccb372f09e31ee3d302ffafd50b15.zip
Reindent per krb5-batch-reindent.el.
Some minor reformatting added in places to avoid exceeding 80 columns. Used Emacs 22.1 built-in C mode. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25144 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5/krb/copy_auth.c')
-rw-r--r--src/lib/krb5/krb/copy_auth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/krb5/krb/copy_auth.c b/src/lib/krb5/krb/copy_auth.c
index a22d8cbb8..06a06450c 100644
--- a/src/lib/krb5/krb/copy_auth.c
+++ b/src/lib/krb5/krb/copy_auth.c
@@ -86,7 +86,7 @@ krb5_merge_authdata(krb5_context context,
if (inauthdat1) {
for (nelems = 0; inauthdat1[nelems]; nelems++) {
retval = krb5int_copy_authdatum(context, inauthdat1[nelems],
- &tempauthdat[nelems]);
+ &tempauthdat[nelems]);
if (retval) {
krb5_free_authdata(context, tempauthdat);
return retval;
@@ -97,7 +97,7 @@ krb5_merge_authdata(krb5_context context,
if (inauthdat2) {
for (nelems2 = 0; inauthdat2[nelems2]; nelems2++) {
retval = krb5int_copy_authdatum(context, inauthdat2[nelems2],
- &tempauthdat[nelems++]);
+ &tempauthdat[nelems++]);
if (retval) {
krb5_free_authdata(context, tempauthdat);
return retval;