summaryrefslogtreecommitdiffstats
path: root/src/lib/krb5/krb/mk_error.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/krb5/krb/mk_error.c')
-rw-r--r--src/lib/krb5/krb/mk_error.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/lib/krb5/krb/mk_error.c b/src/lib/krb5/krb/mk_error.c
index 75cdc9b5be..44fd3b4c2b 100644
--- a/src/lib/krb5/krb/mk_error.c
+++ b/src/lib/krb5/krb/mk_error.c
@@ -1,3 +1,4 @@
+/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
* lib/krb5/krb/mk_error.c
*
@@ -8,7 +9,7 @@
* require a specific license from the United States Government.
* It is the responsibility of any person or organization contemplating
* export to obtain such a license before exporting.
- *
+ *
* WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
* distribute this software and its documentation for any purpose and
* without fee is hereby granted, provided that the above copyright
@@ -22,7 +23,7 @@
* M.I.T. makes no representations about the suitability of
* this software for any purpose. It is provided "as is" without express
* or implied warranty.
- *
+ *
*
* krb5_mk_error() routine.
*/
@@ -30,22 +31,22 @@
#include "k5-int.h"
/*
- formats the error structure *dec_err into an error buffer *enc_err.
+ formats the error structure *dec_err into an error buffer *enc_err.
- The error buffer storage is allocated, and should be freed by the
- caller when finished.
+ The error buffer storage is allocated, and should be freed by the
+ caller when finished.
- returns system errors
- */
+ returns system errors
+*/
krb5_error_code KRB5_CALLCONV
krb5_mk_error(krb5_context context, const krb5_error *dec_err,
- krb5_data *enc_err)
+ krb5_data *enc_err)
{
krb5_error_code retval;
krb5_data *new_enc_err;
if ((retval = encode_krb5_error(dec_err, &new_enc_err)))
- return(retval);
+ return(retval);
*enc_err = *new_enc_err;
free(new_enc_err);
return 0;